diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 338a842ba8..ce1a720060 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -50,3 +50,4 @@ Committing with `git commit -s` will add the sign-off at the end of the commit m - Vanessa Hermann - Lukas Fischer - Heiko Kiesel +- Frank Belter diff --git a/scanners/trivy/.helm-docs.gotmpl b/scanners/trivy/.helm-docs.gotmpl index d8f3156364..3fcf5125a3 100644 --- a/scanners/trivy/.helm-docs.gotmpl +++ b/scanners/trivy/.helm-docs.gotmpl @@ -39,13 +39,15 @@ The following security scan configuration example are based on the [Trivy Docume ### Trivy Container Image Scan -Currently we support the follwing 3 scanTypes, corresponding to the trivy scanning modes: +Currently we support the follwing 4 scanTypes, corresponding to the trivy scanning modes: - scanType: "trivy-image" - parameters: `[YOUR_IMAGE_NAME]` - scanType: "trivy-filesystem" - parameters: `[YOUR_PATH_TO_FILES]` - scanType: "trivy-repo" - parameters: `[YOUR_GITHUB_REPO]` +- scanType: "trivy-k8s" + - parameters: `[KUBERNETES_RESOURCE]` A complete example of each scanType are listed below in our [example docs section](https://www.securecodebox.io/docs/scanners/trivy/#examples). diff --git a/scanners/trivy/examples/k8s/README.md b/scanners/trivy/examples/k8s/README.md new file mode 100644 index 0000000000..eeea8e97dd --- /dev/null +++ b/scanners/trivy/examples/k8s/README.md @@ -0,0 +1,7 @@ + + +This example shows how to use the `trivy k8s` scan with the secureCodeBox. diff --git a/scanners/trivy/examples/k8s/scan.yaml b/scanners/trivy/examples/k8s/scan.yaml new file mode 100644 index 0000000000..e9824a7f80 --- /dev/null +++ b/scanners/trivy/examples/k8s/scan.yaml @@ -0,0 +1,12 @@ +# SPDX-FileCopyrightText: the secureCodeBox authors +# +# SPDX-License-Identifier: Apache-2.0 + +apiVersion: "execution.securecodebox.io/v1" +kind: Scan +metadata: + name: "trivy-k8s" +spec: + scanType: "trivy-k8s" + parameters: + - "cluster" diff --git a/scanners/trivy/integration-tests/trivy.test.js b/scanners/trivy/integration-tests/trivy.test.js index 03f1362462..f689b5bb9e 100644 --- a/scanners/trivy/integration-tests/trivy.test.js +++ b/scanners/trivy/integration-tests/trivy.test.js @@ -98,3 +98,30 @@ test( }, 3 * 60 * 1000 ); + +test( + "trivy k8s scan should not fail", + async () => { + const { categories, severities, count } = await scan( + "trivy-k8s-test", + "trivy-k8s", + ["cluster"], + 10 * 60 * 1000 + ); + + // since the state of the k8s cluster in the test environment cannot be predicted, only the structure of the result is assured here + expect(count).toBeGreaterThanOrEqual(1); + + const categoryNames = Object.keys(categories); + expect(categoryNames).toHaveLength(2); + expect(categoryNames.includes("Misconfiguration")).toBeTruthy(); + expect(categoryNames.includes("Vulnerability")).toBeTruthy(); + + const severityNames = Object.keys(severities); + expect(severityNames).toHaveLength(3); + expect(severityNames.includes("high")).toBeTruthy(); + expect(severityNames.includes("low")).toBeTruthy(); + expect(severityNames.includes("medium")).toBeTruthy(); + }, + 10 * 60 * 1000 +); diff --git a/scanners/trivy/parser/__snapshots__/parser.test.js.snap b/scanners/trivy/parser/__snapshots__/parser.test.js.snap index 5ded854d7c..718e6ab51f 100644 --- a/scanners/trivy/parser/__snapshots__/parser.test.js.snap +++ b/scanners/trivy/parser/__snapshots__/parser.test.js.snap @@ -10099,3 +10099,124701 @@ exports[`parses securecodebox:master result file into findings 1`] = ` }, ] `; + +exports[`should parse a trivy-k8s scan result 1`] = ` +[ + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-controller-manager'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'manager' of Deployment 'securecodebox-controller-manager' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-controller-manager'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'manager' of Deployment 'securecodebox-controller-manager' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-controller-manager'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-controller-manager'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-8911", + "installedVersion": "v1.40.54", + "packageName": "github.com/aws/aws-sdk-go", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-8911", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869800", + "https://github.com/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8911", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8911", + ], + }, + "category": "Vulnerability", + "description": "A padding oracle vulnerability exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. The SDK allows users to encrypt files with AES-CBC without computing a Message Authentication Code (MAC), which then allows an attacker who has write access to the target's S3 bucket and can observe whether or not an endpoint with access to the key can decrypt a file, they can reconstruct the plaintext with (on average) 128*length (plaintext) queries to the endpoint, by exploiting CBC's ability to manipulate the bytes of the next block and PKCS5 padding errors. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "aws/aws-sdk-go: CBC padding oracle issue in AWS S3 Crypto SDK for golang", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-8911", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-8911", + }, + { + "type": "URL", + "value": "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1869800", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-f5pg-7wfw-84q9", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/pull/3403", + }, + { + "type": "URL", + "value": "https://github.com/google/security-research/security/advisories/GHSA-f5pg-7wfw-84q9", + }, + { + "type": "URL", + "value": "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-8911", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0646", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-8911", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-8912", + "installedVersion": "v1.40.54", + "packageName": "github.com/aws/aws-sdk-go", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-8912", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869801", + "https://github.com/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8912", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8912", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability in the in-band key negotiation exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. An attacker with write access to the targeted bucket can change the encryption algorithm of an object in the bucket, which can then allow them to change AES-GCM to AES-CTR. Using this in combination with a decryption oracle can reveal the authentication key used by AES-GCM as decrypting the GMAC tag leaves the authentication key recoverable as an algebraic equation. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "aws-sdk-go: In-band key negotiation issue in AWS S3 Crypto SDK for golang", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-8912", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-8912", + }, + { + "type": "URL", + "value": "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1869801", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-7f33-f4f5-xwgw", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/pull/3403", + }, + { + "type": "URL", + "value": "https://github.com/google/security-research/security/advisories/GHSA-7f33-f4f5-xwgw", + }, + { + "type": "URL", + "value": "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-8912", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0646", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-8912", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.11.1", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-21698", + "installedVersion": "v1.11.0", + "packageName": "github.com/prometheus/client_golang", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8057", + "https://access.redhat.com/security/cve/CVE-2022-21698", + "https://bugzilla.redhat.com/2044628", + "https://bugzilla.redhat.com/2045880", + "https://bugzilla.redhat.com/2050648", + "https://bugzilla.redhat.com/2050742", + "https://bugzilla.redhat.com/2050743", + "https://bugzilla.redhat.com/2065290", + "https://bugzilla.redhat.com/2107342", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107376", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2107390", + "https://bugzilla.redhat.com/2107392", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044628", + "https://bugzilla.redhat.com/show_bug.cgi?id=2045880", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050648", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050742", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050743", + "https://bugzilla.redhat.com/show_bug.cgi?id=2055349", + "https://bugzilla.redhat.com/show_bug.cgi?id=2065290", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104367", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107342", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107376", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107390", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107392", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23648", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1962", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21673", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21698", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21702", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21703", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21713", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28131", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30631", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30633", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://errata.almalinux.org/9/ALSA-2022-8057.html", + "https://errata.rockylinux.org/RLSA-2022:8057", + "https://github.com/advisories/GHSA-cg3q-j54f-5p7p", + "https://github.com/prometheus/client_golang/pull/962", + "https://github.com/prometheus/client_golang/pull/987", + "https://github.com/prometheus/client_golang/releases/tag/v1.11.1", + "https://github.com/prometheus/client_golang/security/advisories/GHSA-cg3q-j54f-5p7p", + "https://linux.oracle.com/cve/CVE-2022-21698.html", + "https://linux.oracle.com/errata/ELSA-2022-8057.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2IK53GWZ475OQ6ENABKMJMTOBZG6LXUR/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2PFW6Q2LXXWTFRTMTRN4ZGADFRQPKJ3D/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36GUEPA5TPSC57DZTPYPBL6T7UPQ2FRH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3L6GDN5S5QZSCFKWD3GKL2RDZQ6B4UWA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4KDETHL5XCT6RZN2BBNOCEXRZ2W3SFU3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5OGNAFVXSMTTT2UPH6CS3IH6L3KM42Q7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7V7I72LSQ3IET3QJR6QPAVGJZ4CBDLN5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AK7CJBCGERCRXYUR2EWDSSDVAQMTAZGX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FY3N7H6VSDZM37B4SKM2PFFCUWU7QYWN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HLAQRRGNSO5MYCPAXGPH2OCSHOGHSQMQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KBMVIQFKQDSSTHVVJWJ4QH6TW3JVB7XZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MH6ALXEQXIFQRQFNJ5Y2MJ5DFPIX76VN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RN7JGC2LVHPEGSJYODFUV5FEKPBVG4D7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SASRKYHT5ZFSVMJUQUG3UAEQRJYGJKAR/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZKORFJTRRDJCWBTJPISKKCVMMMJBIRLG/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-21698", + "https://pkg.go.dev/vuln/GO-2022-0322", + "https://www.cve.org/CVERecord?id=CVE-2022-21698", + ], + }, + "category": "Vulnerability", + "description": "client_golang is the instrumentation library for Go applications in Prometheus, and the promhttp package in client_golang provides tooling around HTTP servers and clients. In client_golang prior to version 1.11.1, HTTP server is susceptible to a Denial of Service through unbounded cardinality, and potential memory exhaustion, when handling requests with non-standard HTTP methods. In order to be affected, an instrumented software must use any of \`promhttp.InstrumentHandler*\` middleware except \`RequestsInFlight\`; not filter any specific methods (e.g GET) before middleware; pass metric with \`method\` label name to our middleware; and not have any firewall/LB/proxy that filters away requests with unknown \`method\`. client_golang version 1.11.1 contains a patch for this issue. Several workarounds are available, including removing the \`method\` label name from counter/gauge used in the InstrumentHandler; turning off affected promhttp handlers; adding custom middleware before promhttp handler that will sanitize the request method given by Go http.Request; and using a reverse proxy or web application firewall, configured to only allow a limited set of methods.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "Denial of service using InstrumentHandlerCounter", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-21698", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8057", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-21698", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2044628", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2045880", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2050648", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2050742", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2050743", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2065290", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107342", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107376", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107390", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2044628", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2045880", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2050648", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2050742", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2050743", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2055349", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2065290", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104367", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107342", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107376", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107390", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107392", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23648", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1962", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21673", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21698", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21702", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21703", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21713", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28131", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30631", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30633", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8057.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8057", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-cg3q-j54f-5p7p", + }, + { + "type": "URL", + "value": "https://github.com/prometheus/client_golang/pull/962", + }, + { + "type": "URL", + "value": "https://github.com/prometheus/client_golang/pull/987", + }, + { + "type": "URL", + "value": "https://github.com/prometheus/client_golang/releases/tag/v1.11.1", + }, + { + "type": "URL", + "value": "https://github.com/prometheus/client_golang/security/advisories/GHSA-cg3q-j54f-5p7p", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-21698.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8057.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2IK53GWZ475OQ6ENABKMJMTOBZG6LXUR/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2PFW6Q2LXXWTFRTMTRN4ZGADFRQPKJ3D/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36GUEPA5TPSC57DZTPYPBL6T7UPQ2FRH/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3L6GDN5S5QZSCFKWD3GKL2RDZQ6B4UWA/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4KDETHL5XCT6RZN2BBNOCEXRZ2W3SFU3/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5OGNAFVXSMTTT2UPH6CS3IH6L3KM42Q7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7V7I72LSQ3IET3QJR6QPAVGJZ4CBDLN5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AK7CJBCGERCRXYUR2EWDSSDVAQMTAZGX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FY3N7H6VSDZM37B4SKM2PFFCUWU7QYWN/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HLAQRRGNSO5MYCPAXGPH2OCSHOGHSQMQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KBMVIQFKQDSSTHVVJWJ4QH6TW3JVB7XZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MH6ALXEQXIFQRQFNJ5Y2MJ5DFPIX76VN/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RN7JGC2LVHPEGSJYODFUV5FEKPBVG4D7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SASRKYHT5ZFSVMJUQUG3UAEQRJYGJKAR/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZKORFJTRRDJCWBTJPISKKCVMMMJBIRLG/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-21698", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0322", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-21698", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20211202192323-5770296d904e", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-43565", + "installedVersion": "v0.0.0-20210513164829-c07d793c2f9a", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-43565", + "https://github.com/advisories/GHSA-gwc9-m7rh-j2ww", + "https://go.dev/cl/368814/", + "https://go.dev/issues/49932", + "https://groups.google.com/forum/#!forum/golang-announce", + "https://groups.google.com/g/golang-announce/c/2AR1sKiM-Qs", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43565", + "https://pkg.go.dev/vuln/GO-2022-0968", + "https://www.cve.org/CVERecord?id=CVE-2021-43565", + ], + }, + "category": "Vulnerability", + "description": "The x/crypto/ssh package before 0.0.0-20211202192323-5770296d904e of golang.org/x/crypto allows an attacker to panic an SSH server.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "golang.org/x/crypto: empty plaintext packet causes panic", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-43565", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-43565", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-gwc9-m7rh-j2ww", + }, + { + "type": "URL", + "value": "https://go.dev/cl/368814/", + }, + { + "type": "URL", + "value": "https://go.dev/issues/49932", + }, + { + "type": "URL", + "value": "https://groups.google.com/forum/#!forum/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/2AR1sKiM-Qs", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-43565", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0968", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-43565", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27191", + "installedVersion": "v0.0.0-20210513164829-c07d793c2f9a", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191", + ], + }, + "category": "Vulnerability", + "description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "crash in a golang.org/x/crypto/ssh server", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27191", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8008", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1939485", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989564", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989570", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989575", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2064702", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121453", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + }, + { + "type": "URL", + "value": "https://go.dev/cl/392355", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27191.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0356", + }, + { + "type": "URL", + "value": "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220429-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27191", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20211209124913-491a49abca63", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-44716", + "installedVersion": "v0.0.0-20210614182718-04defd469f4e", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/go/issues/50058", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716", + ], + }, + "category": "Vulnerability", + "description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "golang: net/http: limit growth of header canonicalization cache", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-44716", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/50058", + }, + { + "type": "URL", + "value": "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + }, + { + "type": "URL", + "value": "https://go.dev/cl/369794", + }, + { + "type": "URL", + "value": "https://go.dev/issue/50058", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-44716.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-0001.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0288", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220121-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-44716", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20210614182718-04defd469f4e", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20210614182718-04defd469f4e", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20210614182718-04defd469f4e", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220412211240-33da011f77ad", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29526", + "installedVersion": "v0.0.0-20210917161153-d61c044b1678", + "packageName": "golang.org/x/sys", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526", + ], + }, + "category": "Vulnerability", + "description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "faccessat checks wrong group", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29526", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/52313", + }, + { + "type": "URL", + "value": "https://go.dev/cl/399539", + }, + { + "type": "URL", + "value": "https://go.dev/cl/400074", + }, + { + "type": "URL", + "value": "https://go.dev/issue/52313", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29526.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5337.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0493", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29526", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.7", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-38561", + "installedVersion": "v0.3.6", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561", + ], + }, + "category": "Vulnerability", + "description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-38561", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://deps.dev/advisory/OSV/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + }, + { + "type": "URL", + "value": "https://go.dev/cl/340830", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/golang.org/x/text/language", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-38561", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.6", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.0.0-20220521103104-8f96da9f5d5e", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-28948", + "installedVersion": "v3.0.0-20210107192922-496545a6307b", + "packageName": "gopkg.in/yaml.v3", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-28948", + "https://github.com/advisories/GHSA-hp87-p4gw-j4gq", + "https://github.com/go-yaml/yaml/commit/8f96da9f5d5eff988554c1aae1784627c4bf6754", + "https://github.com/go-yaml/yaml/issues/666", + "https://nvd.nist.gov/vuln/detail/CVE-2022-28948", + "https://security.netapp.com/advisory/ntap-20220923-0006/", + "https://www.cve.org/CVERecord?id=CVE-2022-28948", + ], + }, + "category": "Vulnerability", + "description": "An issue in the Unmarshal function in Go-Yaml v3 causes the program to crash when attempting to deserialize invalid input.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "crash when attempting to deserialize invalid input", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-28948", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-28948", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-hp87-p4gw-j4gq", + }, + { + "type": "URL", + "value": "https://github.com/go-yaml/yaml/commit/8f96da9f5d5eff988554c1aae1784627c4bf6754", + }, + { + "type": "URL", + "value": "https://github.com/go-yaml/yaml/issues/666", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-28948", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0006/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-28948", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'coredns' of Deployment 'coredns' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'coredns' of Deployment 'coredns' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'coredns' of Deployment 'coredns' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'coredns' of Deployment 'coredns' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV022", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv022", + ], + }, + "category": "Misconfiguration", + "description": "Adding NET_RAW or capabilities beyond the default set must be disallowed.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Do not set spec.containers[*].securityContext.capabilities.add and spec.initContainers[*].securityContext.capabilities.add", + "name": "Non-default capabilities added(Container 'coredns' of Deployment 'coredns' should not set 'securityContext.capabilities.add')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv022", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-4756", + "installedVersion": "2.31-13+deb11u5", + "packageName": "libc6", + "references": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756", + ], + }, + "category": "Vulnerability", + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-4756", + }, + { + "type": "URL", + "value": "http://cxib.net/stuff/glob-0day.c", + }, + { + "type": "URL", + "value": "http://securityreason.com/achievement_securityalert/89", + }, + { + "type": "URL", + "value": "http://securityreason.com/exploitalert/9223", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-4756", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-20796", + "installedVersion": "2.31-13+deb11u5", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796", + ], + }, + "category": "Vulnerability", + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-20796", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/107160", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190315-0002/", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-20796", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010022", + "installedVersion": "2.31-13+deb11u5", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "glibc: stack guard protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010022", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010023", + "installedVersion": "2.31-13+deb11u5", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010023", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109167", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010024", + "installedVersion": "2.31-13+deb11u5", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "glibc: ASLR bypass using cache of thread stack and heap", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010024", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109162", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010025", + "installedVersion": "2.31-13+deb11u5", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is "ASLR bypass itself is not a vulnerability."", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "glibc: information disclosure of heap addresses of pthread_created thread", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010025", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-9192", + "installedVersion": "2.31-13+deb11u5", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-9192", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-9192", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0464", + "installedVersion": "1.1.1n-0+deb11u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt", + ], + }, + "category": "Vulnerability", + "description": "A security vulnerability has been identified in all supported versions + +of OpenSSL related to the verification of X.509 certificate chains +that include policy constraints. Attackers may be able to exploit this +vulnerability by creating a malicious certificate chain that triggers +exponential use of computational resources, leading to a denial-of-service +(DoS) attack on affected systems. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0464", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230322.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-2650", + "installedVersion": "1.1.1n-0+deb11u4", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0465", + "installedVersion": "1.1.1n-0+deb11u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "Applications that use a non-default option when verifying certificates may be +vulnerable to an attack from a malicious CA to circumvent certain checks. + +Invalid certificate policies in leaf certificates are silently ignored by +OpenSSL and other certificate policy checks are skipped for that certificate. +A malicious CA could use this to deliberately assert invalid certificate policies +in order to circumvent policy checking on the certificate altogether. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "Invalid certificate policies in leaf certificates are silently ignored", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0465", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0466", + "installedVersion": "1.1.1n-0+deb11u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "The function X509_VERIFY_PARAM_add0_policy() is documented to +implicitly enable the certificate policy check when doing certificate +verification. However the implementation of the function does not +enable the check which allows certificates with invalid or incorrect +policies to pass the certificate verification. + +As suddenly enabling the policy check could break existing deployments it was +decided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy() +function. + +Instead the applications that require OpenSSL to perform certificate +policy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly +enable the policy check by calling X509_VERIFY_PARAM_set_flags() with +the X509_V_FLAG_POLICY_CHECK flag argument. + +Certificate policy checks are disabled by default in OpenSSL and are not +commonly used by applications.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "Certificate policy check not enabled", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0466", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-6755", + "installedVersion": "1.1.1n-0+deb11u4", + "packageName": "libssl1.1", + "references": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + ], + }, + "category": "Vulnerability", + "description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain "skeleton key" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "Dual_EC_DRBG: weak pseudo random number generator", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-6755", + }, + { + "type": "URL", + "value": "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + }, + { + "type": "URL", + "value": "http://rump2007.cr.yp.to/15-shumow.pdf", + }, + { + "type": "URL", + "value": "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + }, + { + "type": "URL", + "value": "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/63657", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-0928", + "installedVersion": "1.1.1n-0+deb11u4", + "packageName": "libssl1.1", + "references": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928", + ], + }, + "category": "Vulnerability", + "description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a "fault-based attack."", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: RSA authentication weakness", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-0928", + }, + { + "type": "URL", + "value": "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + }, + { + "type": "URL", + "value": "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + }, + { + "type": "URL", + "value": "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + }, + { + "type": "URL", + "value": "http://www.osvdb.org/62808", + }, + { + "type": "URL", + "value": "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-0928", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0464", + "installedVersion": "1.1.1n-0+deb11u4", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt", + ], + }, + "category": "Vulnerability", + "description": "A security vulnerability has been identified in all supported versions + +of OpenSSL related to the verification of X.509 certificate chains +that include policy constraints. Attackers may be able to exploit this +vulnerability by creating a malicious certificate chain that triggers +exponential use of computational resources, leading to a denial-of-service +(DoS) attack on affected systems. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0464", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230322.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-2650", + "installedVersion": "1.1.1n-0+deb11u4", + "packageName": "openssl", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0465", + "installedVersion": "1.1.1n-0+deb11u4", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "Applications that use a non-default option when verifying certificates may be +vulnerable to an attack from a malicious CA to circumvent certain checks. + +Invalid certificate policies in leaf certificates are silently ignored by +OpenSSL and other certificate policy checks are skipped for that certificate. +A malicious CA could use this to deliberately assert invalid certificate policies +in order to circumvent policy checking on the certificate altogether. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "Invalid certificate policies in leaf certificates are silently ignored", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0465", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0466", + "installedVersion": "1.1.1n-0+deb11u4", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "The function X509_VERIFY_PARAM_add0_policy() is documented to +implicitly enable the certificate policy check when doing certificate +verification. However the implementation of the function does not +enable the check which allows certificates with invalid or incorrect +policies to pass the certificate verification. + +As suddenly enabling the policy check could break existing deployments it was +decided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy() +function. + +Instead the applications that require OpenSSL to perform certificate +policy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly +enable the policy check by calling X509_VERIFY_PARAM_set_flags() with +the X509_V_FLAG_POLICY_CHECK flag argument. + +Certificate policy checks are disabled by default in OpenSSL and are not +commonly used by applications.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "Certificate policy check not enabled", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0466", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-6755", + "installedVersion": "1.1.1n-0+deb11u4", + "packageName": "openssl", + "references": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + ], + }, + "category": "Vulnerability", + "description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain "skeleton key" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "Dual_EC_DRBG: weak pseudo random number generator", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-6755", + }, + { + "type": "URL", + "value": "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + }, + { + "type": "URL", + "value": "http://rump2007.cr.yp.to/15-shumow.pdf", + }, + { + "type": "URL", + "value": "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + }, + { + "type": "URL", + "value": "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/63657", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-0928", + "installedVersion": "1.1.1n-0+deb11u4", + "packageName": "openssl", + "references": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928", + ], + }, + "category": "Vulnerability", + "description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a "fault-based attack."", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: RSA authentication weakness", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-0928", + }, + { + "type": "URL", + "value": "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + }, + { + "type": "URL", + "value": "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + }, + { + "type": "URL", + "value": "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + }, + { + "type": "URL", + "value": "http://www.osvdb.org/62808", + }, + { + "type": "URL", + "value": "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-0928", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.11.1", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-21698", + "installedVersion": "v1.1.0", + "packageName": "github.com/prometheus/client_golang", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8057", + "https://access.redhat.com/security/cve/CVE-2022-21698", + "https://bugzilla.redhat.com/2044628", + "https://bugzilla.redhat.com/2045880", + "https://bugzilla.redhat.com/2050648", + "https://bugzilla.redhat.com/2050742", + "https://bugzilla.redhat.com/2050743", + "https://bugzilla.redhat.com/2065290", + "https://bugzilla.redhat.com/2107342", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107376", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2107390", + "https://bugzilla.redhat.com/2107392", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044628", + "https://bugzilla.redhat.com/show_bug.cgi?id=2045880", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050648", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050742", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050743", + "https://bugzilla.redhat.com/show_bug.cgi?id=2055349", + "https://bugzilla.redhat.com/show_bug.cgi?id=2065290", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104367", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107342", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107376", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107390", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107392", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23648", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1962", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21673", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21698", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21702", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21703", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21713", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28131", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30631", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30633", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://errata.almalinux.org/9/ALSA-2022-8057.html", + "https://errata.rockylinux.org/RLSA-2022:8057", + "https://github.com/advisories/GHSA-cg3q-j54f-5p7p", + "https://github.com/prometheus/client_golang/pull/962", + "https://github.com/prometheus/client_golang/pull/987", + "https://github.com/prometheus/client_golang/releases/tag/v1.11.1", + "https://github.com/prometheus/client_golang/security/advisories/GHSA-cg3q-j54f-5p7p", + "https://linux.oracle.com/cve/CVE-2022-21698.html", + "https://linux.oracle.com/errata/ELSA-2022-8057.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2IK53GWZ475OQ6ENABKMJMTOBZG6LXUR/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2PFW6Q2LXXWTFRTMTRN4ZGADFRQPKJ3D/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36GUEPA5TPSC57DZTPYPBL6T7UPQ2FRH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3L6GDN5S5QZSCFKWD3GKL2RDZQ6B4UWA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4KDETHL5XCT6RZN2BBNOCEXRZ2W3SFU3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5OGNAFVXSMTTT2UPH6CS3IH6L3KM42Q7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7V7I72LSQ3IET3QJR6QPAVGJZ4CBDLN5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AK7CJBCGERCRXYUR2EWDSSDVAQMTAZGX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FY3N7H6VSDZM37B4SKM2PFFCUWU7QYWN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HLAQRRGNSO5MYCPAXGPH2OCSHOGHSQMQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KBMVIQFKQDSSTHVVJWJ4QH6TW3JVB7XZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MH6ALXEQXIFQRQFNJ5Y2MJ5DFPIX76VN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RN7JGC2LVHPEGSJYODFUV5FEKPBVG4D7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SASRKYHT5ZFSVMJUQUG3UAEQRJYGJKAR/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZKORFJTRRDJCWBTJPISKKCVMMMJBIRLG/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-21698", + "https://pkg.go.dev/vuln/GO-2022-0322", + "https://www.cve.org/CVERecord?id=CVE-2022-21698", + ], + }, + "category": "Vulnerability", + "description": "client_golang is the instrumentation library for Go applications in Prometheus, and the promhttp package in client_golang provides tooling around HTTP servers and clients. In client_golang prior to version 1.11.1, HTTP server is susceptible to a Denial of Service through unbounded cardinality, and potential memory exhaustion, when handling requests with non-standard HTTP methods. In order to be affected, an instrumented software must use any of \`promhttp.InstrumentHandler*\` middleware except \`RequestsInFlight\`; not filter any specific methods (e.g GET) before middleware; pass metric with \`method\` label name to our middleware; and not have any firewall/LB/proxy that filters away requests with unknown \`method\`. client_golang version 1.11.1 contains a patch for this issue. Several workarounds are available, including removing the \`method\` label name from counter/gauge used in the InstrumentHandler; turning off affected promhttp handlers; adding custom middleware before promhttp handler that will sanitize the request method given by Go http.Request; and using a reverse proxy or web application firewall, configured to only allow a limited set of methods.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "Denial of service using InstrumentHandlerCounter", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-21698", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8057", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-21698", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2044628", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2045880", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2050648", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2050742", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2050743", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2065290", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107342", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107376", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107390", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2044628", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2045880", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2050648", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2050742", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2050743", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2055349", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2065290", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104367", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107342", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107376", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107390", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107392", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23648", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1962", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21673", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21698", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21702", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21703", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21713", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28131", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30631", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30633", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8057.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8057", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-cg3q-j54f-5p7p", + }, + { + "type": "URL", + "value": "https://github.com/prometheus/client_golang/pull/962", + }, + { + "type": "URL", + "value": "https://github.com/prometheus/client_golang/pull/987", + }, + { + "type": "URL", + "value": "https://github.com/prometheus/client_golang/releases/tag/v1.11.1", + }, + { + "type": "URL", + "value": "https://github.com/prometheus/client_golang/security/advisories/GHSA-cg3q-j54f-5p7p", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-21698.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8057.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2IK53GWZ475OQ6ENABKMJMTOBZG6LXUR/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2PFW6Q2LXXWTFRTMTRN4ZGADFRQPKJ3D/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36GUEPA5TPSC57DZTPYPBL6T7UPQ2FRH/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3L6GDN5S5QZSCFKWD3GKL2RDZQ6B4UWA/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4KDETHL5XCT6RZN2BBNOCEXRZ2W3SFU3/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5OGNAFVXSMTTT2UPH6CS3IH6L3KM42Q7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7V7I72LSQ3IET3QJR6QPAVGJZ4CBDLN5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AK7CJBCGERCRXYUR2EWDSSDVAQMTAZGX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FY3N7H6VSDZM37B4SKM2PFFCUWU7QYWN/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HLAQRRGNSO5MYCPAXGPH2OCSHOGHSQMQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KBMVIQFKQDSSTHVVJWJ4QH6TW3JVB7XZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MH6ALXEQXIFQRQFNJ5Y2MJ5DFPIX76VN/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RN7JGC2LVHPEGSJYODFUV5FEKPBVG4D7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SASRKYHT5ZFSVMJUQUG3UAEQRJYGJKAR/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZKORFJTRRDJCWBTJPISKKCVMMMJBIRLG/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-21698", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0322", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-21698", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20211202192323-5770296d904e", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-43565", + "installedVersion": "v0.0.0-20201216223049-8b5274cf687f", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-43565", + "https://github.com/advisories/GHSA-gwc9-m7rh-j2ww", + "https://go.dev/cl/368814/", + "https://go.dev/issues/49932", + "https://groups.google.com/forum/#!forum/golang-announce", + "https://groups.google.com/g/golang-announce/c/2AR1sKiM-Qs", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43565", + "https://pkg.go.dev/vuln/GO-2022-0968", + "https://www.cve.org/CVERecord?id=CVE-2021-43565", + ], + }, + "category": "Vulnerability", + "description": "The x/crypto/ssh package before 0.0.0-20211202192323-5770296d904e of golang.org/x/crypto allows an attacker to panic an SSH server.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "golang.org/x/crypto: empty plaintext packet causes panic", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-43565", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-43565", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-gwc9-m7rh-j2ww", + }, + { + "type": "URL", + "value": "https://go.dev/cl/368814/", + }, + { + "type": "URL", + "value": "https://go.dev/issues/49932", + }, + { + "type": "URL", + "value": "https://groups.google.com/forum/#!forum/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/2AR1sKiM-Qs", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-43565", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0968", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-43565", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27191", + "installedVersion": "v0.0.0-20201216223049-8b5274cf687f", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191", + ], + }, + "category": "Vulnerability", + "description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "crash in a golang.org/x/crypto/ssh server", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27191", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8008", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1939485", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989564", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989570", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989575", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2064702", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121453", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + }, + { + "type": "URL", + "value": "https://go.dev/cl/392355", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27191.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0356", + }, + { + "type": "URL", + "value": "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220429-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27191", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20210520170846-37e1c6afe023", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-33194", + "installedVersion": "v0.0.0-20201021035429-f5854403a974", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-33194", + "https://github.com/advisories/GHSA-83g2-8m93-v3w7", + "https://github.com/golang/net/commit/37e1c6afe02340126705deced573a85ab75209d7", + "https://go.dev/cl/311090", + "https://go.dev/issue/46288", + "https://go.googlesource.com/net/+/37e1c6afe02340126705deced573a85ab75209d7", + "https://groups.google.com/g/golang-announce/c/wPunbCPkWUg", + "https://groups.google.com/g/golang-dev/c/28x0nthP-c8/m/KqWVTjsnBAAJ", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4CHKSFMHZVOBCZSSVRE3UEYNKARTBMTM/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33194", + "https://pkg.go.dev/vuln/GO-2021-0238", + "https://www.cve.org/CVERecord?id=CVE-2021-33194", + ], + }, + "category": "Vulnerability", + "description": "golang.org/x/net before v0.0.0-20210520170846-37e1c6afe023 allows attackers to cause a denial of service (infinite loop) via crafted ParseFragment input.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "golang: x/net/html: infinite loop in ParseFragment", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33194", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33194", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-83g2-8m93-v3w7", + }, + { + "type": "URL", + "value": "https://github.com/golang/net/commit/37e1c6afe02340126705deced573a85ab75209d7", + }, + { + "type": "URL", + "value": "https://go.dev/cl/311090", + }, + { + "type": "URL", + "value": "https://go.dev/issue/46288", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/net/+/37e1c6afe02340126705deced573a85ab75209d7", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/wPunbCPkWUg", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/28x0nthP-c8/m/KqWVTjsnBAAJ", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4CHKSFMHZVOBCZSSVRE3UEYNKARTBMTM/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33194", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0238", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33194", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20211209124913-491a49abca63", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-44716", + "installedVersion": "v0.0.0-20201021035429-f5854403a974", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/go/issues/50058", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716", + ], + }, + "category": "Vulnerability", + "description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "golang: net/http: limit growth of header canonicalization cache", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-44716", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/50058", + }, + { + "type": "URL", + "value": "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + }, + { + "type": "URL", + "value": "https://go.dev/cl/369794", + }, + { + "type": "URL", + "value": "https://go.dev/issue/50058", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-44716.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-0001.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0288", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220121-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-44716", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20201021035429-f5854403a974", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20201021035429-f5854403a974", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20210428140749-89ef3d95e781", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-31525", + "installedVersion": "v0.0.0-20201021035429-f5854403a974", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-31525", + "https://github.com/advisories/GHSA-h86h-8ppg-mxmh", + "https://github.com/golang/go/issues/45710", + "https://go.dev/cl/313069", + "https://go.dev/issue/45710", + "https://go.googlesource.com/net/+/89ef3d95e781148a0951956029c92a211477f7f9", + "https://groups.google.com/g/golang-announce/c/cu9SP4eSXMc", + "https://linux.oracle.com/cve/CVE-2021-31525.html", + "https://linux.oracle.com/errata/ELSA-2021-3076.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ISRZZ6NY5R2TBYE72KZFOCO25TEUQTBF/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-31525", + "https://pkg.go.dev/vuln/GO-2022-0236", + "https://security.gentoo.org/glsa/202208-02", + "https://www.cve.org/CVERecord?id=CVE-2021-31525", + ], + }, + "category": "Vulnerability", + "description": "net/http in Go before 1.15.12 and 1.16.x before 1.16.4 allows remote attackers to cause a denial of service (panic) via a large header to ReadRequest or ReadResponse. Server, Transport, and Client can each be affected in some configurations.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "golang: net/http: panic in ReadRequest and ReadResponse when reading a very large header", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-31525", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-31525", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-h86h-8ppg-mxmh", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/45710", + }, + { + "type": "URL", + "value": "https://go.dev/cl/313069", + }, + { + "type": "URL", + "value": "https://go.dev/issue/45710", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/net/+/89ef3d95e781148a0951956029c92a211477f7f9", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/cu9SP4eSXMc", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-31525.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-3076.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ISRZZ6NY5R2TBYE72KZFOCO25TEUQTBF/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-31525", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0236", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-31525", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20201021035429-f5854403a974", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220412211240-33da011f77ad", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29526", + "installedVersion": "v0.0.0-20200930185726-fdedc70b468f", + "packageName": "golang.org/x/sys", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526", + ], + }, + "category": "Vulnerability", + "description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "faccessat checks wrong group", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29526", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/52313", + }, + { + "type": "URL", + "value": "https://go.dev/cl/399539", + }, + { + "type": "URL", + "value": "https://go.dev/cl/400074", + }, + { + "type": "URL", + "value": "https://go.dev/issue/52313", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29526.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5337.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0493", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29526", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.7", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-38561", + "installedVersion": "v0.3.3", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561", + ], + }, + "category": "Vulnerability", + "description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-38561", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://deps.dev/advisory/OSV/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + }, + { + "type": "URL", + "value": "https://go.dev/cl/340830", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/golang.org/x/text/language", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-38561", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.3", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.2.8", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2019-11254", + "installedVersion": "v2.2.4", + "packageName": "gopkg.in/yaml.v2", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-11254", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18496", + "https://github.com/advisories/GHSA-wxc4-f4m6-wwqv", + "https://github.com/go-yaml/yaml/commit/53403b58ad1b561927d19068c655246f2db79d48", + "https://github.com/go-yaml/yaml/pull/555", + "https://github.com/kubernetes/kubernetes/issues/89535", + "https://github.com/kubernetes/kubernetes/pull/87467/commits/b86df2bec4f377afc0ca03482ffad2f0a49a83b8", + "https://groups.google.com/d/msg/kubernetes-announce/ALL9s73E5ck/4yHe8J-PBAAJ", + "https://groups.google.com/forum/#!topic/kubernetes-security-announce/wuwEwZigXBc", + "https://linux.oracle.com/cve/CVE-2019-11254.html", + "https://linux.oracle.com/errata/ELSA-2020-5653.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11254", + "https://pkg.go.dev/vuln/GO-2020-0036", + "https://security.netapp.com/advisory/ntap-20200413-0003/", + "https://www.cve.org/CVERecord?id=CVE-2019-11254", + ], + }, + "category": "Vulnerability", + "description": "The Kubernetes API Server component in versions 1.1-1.14, and versions prior to 1.15.10, 1.16.7 and 1.17.3 allows an authorized user who sends malicious YAML payloads to cause the kube-apiserver to consume excessive CPU cycles while parsing YAML.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "kubernetes: Denial of service in API server via crafted YAML payloads by authorized users", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-11254", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-11254", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18496", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-wxc4-f4m6-wwqv", + }, + { + "type": "URL", + "value": "https://github.com/go-yaml/yaml/commit/53403b58ad1b561927d19068c655246f2db79d48", + }, + { + "type": "URL", + "value": "https://github.com/go-yaml/yaml/pull/555", + }, + { + "type": "URL", + "value": "https://github.com/kubernetes/kubernetes/issues/89535", + }, + { + "type": "URL", + "value": "https://github.com/kubernetes/kubernetes/pull/87467/commits/b86df2bec4f377afc0ca03482ffad2f0a49a83b8", + }, + { + "type": "URL", + "value": "https://groups.google.com/d/msg/kubernetes-announce/ALL9s73E5ck/4yHe8J-PBAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/forum/#!topic/kubernetes-security-announce/wuwEwZigXBc", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-11254.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-5653.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-11254", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2020-0036", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200413-0003/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-11254", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.20.0-alpha.2", + "foundIn": "Target: 'usr/local/bin/local-path-provisioner' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-8565", + "installedVersion": "v0.17.1", + "packageName": "k8s.io/client-go", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-8565", + "https://github.com/advisories/GHSA-8cfg-vx93-jvxw", + "https://github.com/kubernetes/kubernetes/commit/e99df0e5a75eb6e86123b56d53e9b7ca0fd00419", + "https://github.com/kubernetes/kubernetes/issues/95623", + "https://github.com/kubernetes/kubernetes/pull/95316", + "https://groups.google.com/g/kubernetes-announce/c/ScdmyORnPDk", + "https://groups.google.com/g/kubernetes-security-discuss/c/vm-HcrFUOCs/m/36utxAM5CwAJ", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8565", + "https://pkg.go.dev/vuln/GO-2021-0064", + "https://www.cve.org/CVERecord?id=CVE-2020-8565", + ], + }, + "category": "Vulnerability", + "description": "In Kubernetes, if the logging level is set to at least 9, authorization and bearer tokens will be written to log files. This can occur both in API server logs and client tool output like kubectl. This affects <= v1.19.3, <= v1.18.10, <= v1.17.13, < v1.20.0-alpha2.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "kubernetes: Incomplete fix for CVE-2019-11250 allows for token leak in logs when logLevel >= 9", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-8565", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-8565", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-8cfg-vx93-jvxw", + }, + { + "type": "URL", + "value": "https://github.com/kubernetes/kubernetes/commit/e99df0e5a75eb6e86123b56d53e9b7ca0fd00419", + }, + { + "type": "URL", + "value": "https://github.com/kubernetes/kubernetes/issues/95623", + }, + { + "type": "URL", + "value": "https://github.com/kubernetes/kubernetes/pull/95316", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/kubernetes-announce/c/ScdmyORnPDk", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/kubernetes-security-discuss/c/vm-HcrFUOCs/m/36utxAM5CwAJ", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-8565", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0064", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-8565", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV015", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015", + ], + }, + "category": "Misconfiguration", + "description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'containers[].resources.requests.cpu'.", + "name": "CPU requests not specified(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.requests.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv015", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0040", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0040", + ], + }, + "category": "Misconfiguration", + "description": "Disable profiling, if not needed.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Edit the Scheduler pod specification file /etc/kubernetes/manifests/kube-scheduler.yaml file on the Control Plane node and set the below parameter.", + "name": "Ensure that the --profiling argument is set to false(Ensure that the --profiling argument is set to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0040", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV009", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009", + ], + }, + "category": "Misconfiguration", + "description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Do not set 'spec.template.spec.hostNetwork' to true.", + "name": "Access to host network(Pod 'kube-scheduler-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv009", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV023", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023", + ], + }, + "category": "Misconfiguration", + "description": "HostPath volumes must be forbidden.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Do not set 'spec.volumes[*].hostPath'.", + "name": "hostPath volumes mounted(Pod 'kube-scheduler-kind-control-plane' should not set 'spec.template.volumes.hostPath')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv023", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0001", + ], + }, + "category": "Misconfiguration", + "description": "Disable anonymous requests to the API server.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set '--anonymous-auth' to 'false'.", + "name": "Ensure that the --anonymous-auth argument is set to false(Ensure that the --anonymous-auth argument is set to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0001", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0006", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0006", + ], + }, + "category": "Misconfiguration", + "description": "Verify kubelet's certificate before establishing connection.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Follow the Kubernetes documentation and setup the TLS connection between the apiserver and kubelets. ", + "name": "Ensure that the --kubelet-certificate-authority argument is set as appropriate(Ensure that the --kubelet-certificate-authority argument is set as appropriate)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0006", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0010", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0010", + ], + }, + "category": "Misconfiguration", + "description": "Limit the rate at which the API server accepts requests.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Follow the Kubernetes documentation and set the desired limits in a configuration file. Then, edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml and set the below parameters.", + "name": "Ensure that the admission control plugin EventRateLimit is set(Ensure that the admission control plugin EventRateLimit is set)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0010", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV0012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/ksv0012", + ], + }, + "category": "Misconfiguration", + "description": "Always pull images.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --enable-admission-plugins parameter to include AlwaysPullImages.", + "name": "Ensure that the admission control plugin AlwaysPullImages is set(Ensure that the admission control plugin AlwaysPullImages is set)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv0012", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0013", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0013", + ], + }, + "category": "Misconfiguration", + "description": "The SecurityContextDeny admission controller can be used to deny pods which make use of some SecurityContext fields which could allow for privilege escalation in the cluster. This should be used where PodSecurityPolicy is not in place within the cluster.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --enable-admission-plugins parameter to include SecurityContextDeny, unless PodSecurityPolicy is already in place.", + "name": "Ensure that the admission control plugin SecurityContextDeny is set if PodSecurityPolicy is not used(Ensure that the admission control plugin SecurityContextDeny is set if PodSecurityPolicy is not used)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0013", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0018", + ], + }, + "category": "Misconfiguration", + "description": "Disable profiling, if not needed.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the below parameter.", + "name": "Ensure that the --profiling argument is set to false(Ensure that the --profiling argument is set to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0018", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0019", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0019", + ], + }, + "category": "Misconfiguration", + "description": "Enable auditing on the Kubernetes API Server and set the desired audit log path.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-path parameter.", + "name": "Ensure that the --audit-log-path argument is set(Ensure that the --audit-log-path argument is set)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0019", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0020", + ], + }, + "category": "Misconfiguration", + "description": "Retain the logs for at least 30 days or as appropriate.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-maxage parameter to 30 or as an appropriate number of days.", + "name": "Ensure that the --audit-log-maxage argument is set to 30 or as appropriate(Ensure that the --audit-log-maxage argument is set to 30 or as appropriate)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0020", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0021", + ], + }, + "category": "Misconfiguration", + "description": "Retain 10 or an appropriate number of old log files.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-maxbackup parameter to 10 or to an appropriate value.", + "name": "Ensure that the --audit-log-maxbackup argument is set to 10 or as appropriate(Ensure that the --audit-log-maxbackup argument is set to 10 or as appropriate)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0021", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0022", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0022", + ], + }, + "category": "Misconfiguration", + "description": "Rotate log files on reaching 100 MB or as appropriate.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-maxsize parameter to an appropriate size in MB", + "name": "Ensure that the --audit-log-maxsize argument is set to 100 or as appropriate(Ensure that the --audit-log-maxsize argument is set to 100 or as appropriate)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0022", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV009", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009", + ], + }, + "category": "Misconfiguration", + "description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Do not set 'spec.template.spec.hostNetwork' to true.", + "name": "Access to host network(Pod 'kube-apiserver-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv009", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV023", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023", + ], + }, + "category": "Misconfiguration", + "description": "HostPath volumes must be forbidden.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Do not set 'spec.volumes[*].hostPath'.", + "name": "hostPath volumes mounted(Pod 'kube-apiserver-kind-control-plane' should not set 'spec.template.volumes.hostPath')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv023", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0033", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0033", + ], + }, + "category": "Misconfiguration", + "description": "Activate garbage collector on pod termination, as appropriate.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Edit the Controller Manager pod specification file /etc/kubernetes/manifests/kube-controller-manager.yaml on the Control Plane node and set the --terminated-pod-gc-threshold to an appropriate threshold.", + "name": "Ensure that the --terminated-pod-gc-threshold argument is set as appropriate(Ensure that the --terminated-pod-gc-threshold argument is set as appropriate)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0033", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0034", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0034", + ], + }, + "category": "Misconfiguration", + "description": "Disable profiling, if not needed.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Edit the Controller Manager pod specification file /etc/kubernetes/manifests/kube-controller-manager.yaml on the Control Plane node and set the below parameter.", + "name": "Ensure that the --profiling argument is set to false(Ensure that the --profiling argument is set to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0034", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0038", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0038", + ], + }, + "category": "Misconfiguration", + "description": "Enable kubelet server certificate rotation on controller-manager.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Edit the Controller Manager pod specification file /etc/kubernetes/manifests/kube-controller-manager.yaml on the Control Plane node and set the --feature-gates parameter to include RotateKubeletServerCertificate=true .", + "name": "Ensure that the RotateKubeletServerCertificate argument is set to true(Ensure that the RotateKubeletServerCertificate argument is set to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0038", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV009", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009", + ], + }, + "category": "Misconfiguration", + "description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Do not set 'spec.template.spec.hostNetwork' to true.", + "name": "Access to host network(Pod 'kube-controller-manager-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv009", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV023", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023", + ], + }, + "category": "Misconfiguration", + "description": "HostPath volumes must be forbidden.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Do not set 'spec.volumes[*].hostPath'.", + "name": "hostPath volumes mounted(Pod 'kube-controller-manager-kind-control-plane' should not set 'spec.template.volumes.hostPath')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv023", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3374", + "installedVersion": "2.2.4", + "packageName": "apt", + "references": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374", + ], + }, + "category": "Vulnerability", + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + }, + { + "type": "URL", + "value": "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + }, + { + "type": "URL", + "value": "https://seclists.org/fulldisclosure/2011/Sep/221", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2011-3374", + }, + { + "type": "URL", + "value": "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2011-3374", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3715", + "installedVersion": "5.1-2+deb11u1", + "packageName": "bash", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0340", + "https://access.redhat.com/security/cve/CVE-2022-3715", + "https://bugzilla.redhat.com/2126720", + "https://bugzilla.redhat.com/show_bug.cgi?id=2126720", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3715", + "https://errata.almalinux.org/9/ALSA-2023-0340.html", + "https://errata.rockylinux.org/RLSA-2023:0340", + "https://linux.oracle.com/cve/CVE-2022-3715.html", + "https://linux.oracle.com/errata/ELSA-2023-0340.html", + "https://lists.gnu.org/archive/html/bug-bash/2022-08/msg00147.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3715", + "https://www.cve.org/CVERecord?id=CVE-2022-3715", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the bash package, where a heap-buffer overflow can occur in valid parameter_transform. This issue may lead to memory problems.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "a heap-buffer-overflow in valid_parameter_transform", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3715", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0340", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3715", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2126720", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2126720", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3715", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0340.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0340", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3715.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0340.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-bash/2022-08/msg00147.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3715", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3715", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "1:2.36.1-8+deb11u1", + "packageName": "bsdutils", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2016-2781", + "installedVersion": "8.32-4+b1", + "packageName": "coreutils", + "references": [ + "http://seclists.org/oss-sec/2016/q1/452", + "http://www.openwall.com/lists/oss-security/2016/02/28/2", + "http://www.openwall.com/lists/oss-security/2016/02/28/3", + "https://access.redhat.com/security/cve/CVE-2016-2781", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lore.kernel.org/patchwork/patch/793178/", + "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + "https://www.cve.org/CVERecord?id=CVE-2016-2781", + ], + }, + "category": "Vulnerability", + "description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "coreutils: Non-privileged session can escape to the parent session in chroot", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2016-2781", + }, + { + "type": "URL", + "value": "http://seclists.org/oss-sec/2016/q1/452", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2016/02/28/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2016/02/28/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/patchwork/patch/793178/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2016-2781", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-18018", + "installedVersion": "8.32-4+b1", + "packageName": "coreutils", + "references": [ + "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + "https://access.redhat.com/security/cve/CVE-2017-18018", + "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + "https://www.cve.org/CVERecord?id=CVE-2017-18018", + ], + }, + "category": "Vulnerability", + "description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX "-R -L" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "coreutils: race condition vulnerability in chown and chgrp", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-18018", + }, + { + "type": "URL", + "value": "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-18018", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-18018", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "7.74.0-1.3+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-32221", + "installedVersion": "7.74.0-1.3+deb11u2", + "packageName": "curl", + "references": [ + "http://seclists.org/fulldisclosure/2023/Jan/19", + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://www.openwall.com/lists/oss-security/2023/05/17/4", + "https://access.redhat.com/errata/RHSA-2023:0333", + "https://access.redhat.com/security/cve/CVE-2022-32221", + "https://bugzilla.redhat.com/2135411", + "https://bugzilla.redhat.com/show_bug.cgi?id=2135411", + "https://curl.se/docs/CVE-2022-32221.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32221", + "https://errata.almalinux.org/9/ALSA-2023-0333.html", + "https://errata.rockylinux.org/RLSA-2023:0333", + "https://hackerone.com/reports/1704017", + "https://linux.oracle.com/cve/CVE-2022-32221.html", + "https://linux.oracle.com/errata/ELSA-2023-0333.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32221", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20230110-0006/", + "https://security.netapp.com/advisory/ntap-20230208-0002/", + "https://support.apple.com/kb/HT213604", + "https://support.apple.com/kb/HT213605", + "https://ubuntu.com/security/notices/USN-5702-1", + "https://ubuntu.com/security/notices/USN-5702-2", + "https://ubuntu.com/security/notices/USN-5823-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32221", + "https://www.debian.org/security/2023/dsa-5330", + ], + }, + "category": "Vulnerability", + "description": "When doing HTTP(S) transfers, libcurl might erroneously use the read callback (\`CURLOPT_READFUNCTION\`) to ask for data to send, even when the \`CURLOPT_POSTFIELDS\` option has been set, if the same handle previously was used to issue a \`PUT\` request which used that callback. This flaw may surprise the application and cause it to misbehave and either send off the wrong data or use memory after free or similar in the subsequent \`POST\` request. The problem exists in the logic for a reused handle when it is changed from a PUT to a POST.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "POST following PUT confusion", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32221", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2023/Jan/19", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2023/Jan/20", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/17/4", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0333", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32221", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2135411", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2135411", + }, + { + "type": "URL", + "value": "https://curl.se/docs/CVE-2022-32221.html", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32221", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0333.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0333", + }, + { + "type": "URL", + "value": "https://hackerone.com/reports/1704017", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-32221.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0333.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32221", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202212-01", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230110-0006/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230208-0002/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213604", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213605", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5702-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5702-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5823-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32221", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5330", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-23914", + "installedVersion": "7.74.0-1.3+deb11u2", + "packageName": "curl", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-23914", + "https://curl.se/docs/CVE-2023-23914.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23914", + "https://hackerone.com/reports/1813864", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23914", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23914", + ], + }, + "category": "Vulnerability", + "description": "A cleartext transmission of sensitive information vulnerability exists in curl n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libk5crypto3", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libk5crypto3", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5-3", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5-3", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5support0", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5support0", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-2953", + "installedVersion": "2.4.57+dfsg-3+deb11u1", + "packageName": "libldap-2.4-2", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-2953", + "https://bugs.openldap.org/show_bug.cgi?id=9904", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2953", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2953", + "https://www.cve.org/CVERecord?id=CVE-2023-2953", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in openldap. This security flaw causes a null pointer dereference in ber_memalloc_x() function.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "null pointer dereference in ber_memalloc_x function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2953", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2953", + }, + { + "type": "URL", + "value": "https://bugs.openldap.org/show_bug.cgi?id=9904", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2953", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2953", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2953", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2015-3276", + "installedVersion": "2.4.57+dfsg-3+deb11u1", + "packageName": "libldap-2.4-2", + "references": [ + "http://rhn.redhat.com/errata/RHSA-2015-2131.html", + "http://www.oracle.com/technetwork/topics/security/linuxbulletinoct2015-2719645.html", + "http://www.securitytracker.com/id/1034221", + "https://access.redhat.com/security/cve/CVE-2015-3276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1238322", + "https://linux.oracle.com/cve/CVE-2015-3276.html", + "https://linux.oracle.com/errata/ELSA-2015-2131.html", + "https://nvd.nist.gov/vuln/detail/CVE-2015-3276", + "https://www.cve.org/CVERecord?id=CVE-2015-3276", + ], + }, + "category": "Vulnerability", + "description": "The nss_parse_ciphers function in libraries/libldap/tls_m.c in OpenLDAP does not properly parse OpenSSL-style multi-keyword mode cipher strings, which might cause a weaker than intended cipher to be used and allow remote attackers to have unspecified impact via unknown vectors.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "incorrect multi-keyword mode cipherstring parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2015-3276", + }, + { + "type": "URL", + "value": "http://rhn.redhat.com/errata/RHSA-2015-2131.html", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/linuxbulletinoct2015-2719645.html", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id/1034221", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2015-3276", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1238322", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2015-3276.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2015-2131.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2015-3276", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2015-3276", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-14159", + "installedVersion": "2.4.57+dfsg-3+deb11u1", + "packageName": "libldap-2.4-2", + "references": [ + "http://www.openldap.org/its/index.cgi?findid=8703", + "https://access.redhat.com/security/cve/CVE-2017-14159", + "https://nvd.nist.gov/vuln/detail/CVE-2017-14159", + "https://www.cve.org/CVERecord?id=CVE-2017-14159", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "slapd in OpenLDAP 2.4.45 and earlier creates a PID file after dropping privileges to a non-root account, which might allow local users to kill arbitrary processes by leveraging access to this non-root account for PID file modification before a root script executes a "kill \`cat /pathname\`" command, as demonstrated by openldap-initscript.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "openldap: Privilege escalation via PID file manipulation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-14159", + }, + { + "type": "URL", + "value": "http://www.openldap.org/its/index.cgi?findid=8703", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-14159", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-14159", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-14159", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-17740", + "installedVersion": "2.4.57+dfsg-3+deb11u1", + "packageName": "libldap-2.4-2", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00053.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00058.html", + "http://www.openldap.org/its/index.cgi/Incoming?id=8759", + "https://access.redhat.com/security/cve/CVE-2017-17740", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + "https://nvd.nist.gov/vuln/detail/CVE-2017-17740", + "https://www.cve.org/CVERecord?id=CVE-2017-17740", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "contrib/slapd-modules/nops/nops.c in OpenLDAP through 2.4.45, when both the nops module and the memberof overlay are enabled, attempts to free a buffer that was allocated on the stack, which allows remote attackers to cause a denial of service (slapd crash) via a member MODDN operation.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "openldap: contrib/slapd-modules/nops/nops.c attempts to free stack buffer allowing remote attackers to cause a denial of service", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-17740", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00053.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00058.html", + }, + { + "type": "URL", + "value": "http://www.openldap.org/its/index.cgi/Incoming?id=8759", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-17740", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-17740", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-17740", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-15719", + "installedVersion": "2.4.57+dfsg-3+deb11u1", + "packageName": "libldap-2.4-2", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00033.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00059.html", + "https://access.redhat.com/errata/RHBA-2019:3674", + "https://access.redhat.com/security/cve/CVE-2020-15719", + "https://bugs.openldap.org/show_bug.cgi?id=9266", + "https://bugzilla.redhat.com/show_bug.cgi?id=1740070", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + "https://nvd.nist.gov/vuln/detail/CVE-2020-15719", + "https://www.cve.org/CVERecord?id=CVE-2020-15719", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "libldap in certain third-party OpenLDAP packages has a certificate-validation flaw when the third-party package is asserting RFC6125 support. It considers CN even when there is a non-matching subjectAltName (SAN). This is fixed in, for example, openldap-2.4.46-10.el8 in Red Hat Enterprise Linux.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "openldap: Certificate validation incorrectly matches name against CN-ID", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-15719", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00033.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00059.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHBA-2019:3674", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-15719", + }, + { + "type": "URL", + "value": "https://bugs.openldap.org/show_bug.cgi?id=9266", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1740070", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-15719", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-15719", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "2.36.1-8+deb11u1", + "packageName": "libmount1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "6.2+20201114-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-29458", + "installedVersion": "6.2+20201114-2", + "packageName": "libncurses6", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458", + ], + }, + "category": "Vulnerability", + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "ncurses: segfaulting OOB read", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29458", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/41", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#t20220416", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213488", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5477-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29458", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29491", + "installedVersion": "6.2+20201114-2", + "packageName": "libncurses6", + "references": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4", + ], + }, + "category": "Vulnerability", + "description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Local users can trigger security-relevant memory corruption via malformed data", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29491", + }, + { + "type": "URL", + "value": "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/10", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/11", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230517-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/12/5", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/13/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "6.2+20201114-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-29458", + "installedVersion": "6.2+20201114-2", + "packageName": "libncursesw6", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458", + ], + }, + "category": "Vulnerability", + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "ncurses: segfaulting OOB read", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29458", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/41", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#t20220416", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213488", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5477-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29458", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29491", + "installedVersion": "6.2+20201114-2", + "packageName": "libncursesw6", + "references": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4", + ], + }, + "category": "Vulnerability", + "description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Local users can trigger security-relevant memory corruption via malformed data", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29491", + }, + { + "type": "URL", + "value": "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/10", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/11", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230517-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/12/5", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/13/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "10.36-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1586", + "installedVersion": "10.36-2", + "packageName": "libpcre2-8-0", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:5809", + "https://access.redhat.com/security/cve/CVE-2022-1586", + "https://bugzilla.redhat.com/2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1586", + "https://errata.almalinux.org/8/ALSA-2022-5809.html", + "https://errata.rockylinux.org/RLSA-2022:5809", + "https://github.com/PCRE2Project/pcre2/commit/50a51cb7e67268e6ad417eb07c9de9bfea5cc55a,", + "https://github.com/PCRE2Project/pcre2/commit/d4fa336fbcc388f89095b184ba6d99422cfc676c", + "https://linux.oracle.com/cve/CVE-2022-1586.html", + "https://linux.oracle.com/errata/ELSA-2022-5809.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1586", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1586", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre2: Out-of-bounds read in compile_xclass_matchingpath in pcre2_jit_compile.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1586", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:5809", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1586", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2077976", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077976", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077976,", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1586", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2022-5809.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5809", + }, + { + "type": "URL", + "value": "https://github.com/PCRE2Project/pcre2/commit/50a51cb7e67268e6ad417eb07c9de9bfea5cc55a,", + }, + { + "type": "URL", + "value": "https://github.com/PCRE2Project/pcre2/commit/d4fa336fbcc388f89095b184ba6d99422cfc676c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1586.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5809.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1586", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221028-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1586", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "10.36-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1587", + "installedVersion": "10.36-2", + "packageName": "libpcre2-8-0", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-1587", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077983,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1587", + "https://github.com/PCRE2Project/pcre2/commit/03654e751e7f0700693526b67dfcadda6b42c9d0", + "https://linux.oracle.com/cve/CVE-2022-1587.html", + "https://linux.oracle.com/errata/ELSA-2022-5251.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1587", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1587", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre2: Out-of-bounds read in get_recurse_data_length in pcre2_jit_compile.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1587", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1587", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077983,", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1587", + }, + { + "type": "URL", + "value": "https://github.com/PCRE2Project/pcre2/commit/03654e751e7f0700693526b67dfcadda6b42c9d0", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1587.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5251.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1587", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221028-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1587", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-11164", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://openwall.com/lists/oss-security/2017/07/11/3", + "http://www.openwall.com/lists/oss-security/2023/04/11/1", + "http://www.openwall.com/lists/oss-security/2023/04/12/1", + "http://www.securityfocus.com/bid/99575", + "https://access.redhat.com/security/cve/CVE-2017-11164", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + "https://www.cve.org/CVERecord?id=CVE-2017-11164", + ], + }, + "category": "Vulnerability", + "description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-11164", + }, + { + "type": "URL", + "value": "http://openwall.com/lists/oss-security/2017/07/11/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/11/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/12/1", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/99575", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-11164", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-16231", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + "http://seclists.org/fulldisclosure/2018/Dec/33", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101688", + "https://access.redhat.com/security/cve/CVE-2017-16231", + "https://bugs.exim.org/show_bug.cgi?id=2047", + "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + "https://www.cve.org/CVERecord?id=CVE-2017-16231", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-16231", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2018/Dec/33", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/11", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/7", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/8", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/101688", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-16231", + }, + { + "type": "URL", + "value": "https://bugs.exim.org/show_bug.cgi?id=2047", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-16231", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-7245", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7245", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7245", + ], + }, + "category": "Vulnerability", + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-7245", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/97067", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2018:2486", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-7245", + }, + { + "type": "URL", + "value": "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201710-25", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-7245", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-7246", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7246", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7246", + ], + }, + "category": "Vulnerability", + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-7246", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/97067", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2018:2486", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-7246", + }, + { + "type": "URL", + "value": "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201710-25", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-7246", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-20838", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://access.redhat.com/security/cve/CVE-2019-20838", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2019-20838.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2019-20838", + "https://www.pcre.org/original/changelog.txt", + ], + }, + "category": "Vulnerability", + "description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre: Buffer over-read in JIT when UTF is disabled and \\X or \\R has fixed quantifier greater than 1", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-20838", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2020/Dec/32", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/Feb/14", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/717920", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4373", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-20838.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT211931", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212147", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5425-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://www.pcre.org/original/changelog.txt", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36084", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36084", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + "https://linux.oracle.com/cve/CVE-2021-36084.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36084", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "libsepol: use-after-free in __cil_verify_classperms()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36084", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36084.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36084", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36085", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36085", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + "https://linux.oracle.com/cve/CVE-2021-36085.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36085", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "libsepol: use-after-free in __cil_verify_classperms()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36085", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36085.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36085", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36086", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36086", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + "https://linux.oracle.com/cve/CVE-2021-36086.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36086", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "use-after-free in cil_reset_classpermission()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36086", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36086.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36086", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36087", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36087", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + "https://linux.oracle.com/cve/CVE-2021-36087.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36087", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "libsepol: heap-based buffer overflow in ebitmap_match_any()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36087", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36087.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36087", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "2.36.1-8+deb11u1", + "packageName": "libsmartcols1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4450", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (e.g. "CERTIFICATE"), any header data and the payload data. If the function succeeds then the "name_out", "header" and "data" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "double free after calling PEM_read_bio_ex", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4450", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4450.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0215", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The public API function BIO_new_NDEF is a helper function used for streaming +ASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the +SMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by +end user applications. + +The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter +BIO onto the front of it to form a BIO chain, and then returns the new head of +the BIO chain to the caller. Under certain conditions, for example if a CMS +recipient public key is invalid, the new filter BIO is freed and the function +returns a NULL result indicating a failure. However, in this case, the BIO chain +is not properly cleaned up and the BIO passed by the caller still retains +internal pointers to the previously freed filter BIO. If the caller then goes on +to call BIO_pop() on the BIO then a use-after-free will occur. This will most +likely result in a crash. + + + +This scenario occurs directly in the internal function B64_write_ASN1() which +may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on +the BIO. This internal function is in turn called by the public API functions +PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, +SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. + +Other public API functions that may be impacted by this include +i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and +i2d_PKCS7_bio_stream. + +The OpenSSL cms and smime command line applications are similarly affected. + + + +", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "use-after-free following BIO_new_NDEF", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0215", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0215.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0007/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0286", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "X.400 address type confusion in X.509 GeneralName", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0286.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0464", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt", + ], + }, + "category": "Vulnerability", + "description": "A security vulnerability has been identified in all supported versions + +of OpenSSL related to the verification of X.509 certificate chains +that include policy constraints. Attackers may be able to exploit this +vulnerability by creating a malicious certificate chain that triggers +exponential use of computational resources, leading to a denial-of-service +(DoS) attack on affected systems. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0464", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230322.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-2650", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2097", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt", + ], + }, + "category": "Vulnerability", + "description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "AES OCB fails to encrypt some bytes", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2097", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2097.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220715-0011/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230420-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5502-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5343", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220705.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4304", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "timing attack in RSA Decryption implementation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4304", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4304.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0465", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "Applications that use a non-default option when verifying certificates may be +vulnerable to an attack from a malicious CA to circumvent certain checks. + +Invalid certificate policies in leaf certificates are silently ignored by +OpenSSL and other certificate policy checks are skipped for that certificate. +A malicious CA could use this to deliberately assert invalid certificate policies +in order to circumvent policy checking on the certificate altogether. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Invalid certificate policies in leaf certificates are silently ignored", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0465", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0466", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "The function X509_VERIFY_PARAM_add0_policy() is documented to +implicitly enable the certificate policy check when doing certificate +verification. However the implementation of the function does not +enable the check which allows certificates with invalid or incorrect +policies to pass the certificate verification. + +As suddenly enabling the policy check could break existing deployments it was +decided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy() +function. + +Instead the applications that require OpenSSL to perform certificate +policy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly +enable the policy check by calling X509_VERIFY_PARAM_set_flags() with +the X509_V_FLAG_POLICY_CHECK flag argument. + +Certificate policy checks are disabled by default in OpenSSL and are not +commonly used by applications.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Certificate policy check not enabled", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0466", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-6755", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + ], + }, + "category": "Vulnerability", + "description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain "skeleton key" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Dual_EC_DRBG: weak pseudo random number generator", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-6755", + }, + { + "type": "URL", + "value": "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + }, + { + "type": "URL", + "value": "http://rump2007.cr.yp.to/15-shumow.pdf", + }, + { + "type": "URL", + "value": "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + }, + { + "type": "URL", + "value": "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/63657", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-0928", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928", + ], + }, + "category": "Vulnerability", + "description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a "fault-based attack."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "openssl: RSA authentication weakness", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-0928", + }, + { + "type": "URL", + "value": "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + }, + { + "type": "URL", + "value": "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + }, + { + "type": "URL", + "value": "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + }, + { + "type": "URL", + "value": "http://www.osvdb.org/62808", + }, + { + "type": "URL", + "value": "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-0928", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3821", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821", + ], + }, + "category": "Vulnerability", + "description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "buffer overrun in format_timespan() function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3821", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0336", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2139327", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0336", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/23928", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/23933", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3821.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3821", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4415", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4415", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0954", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2155515", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0954", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4415.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/12/21/3", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4392", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392", + ], + }, + "category": "Vulnerability", + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4392", + }, + { + "type": "URL", + "value": "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2013/10/01/9", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4392", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-13529", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529", + ], + }, + "category": "Vulnerability", + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-13529", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-13529.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4361.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210625-0005/", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-13529", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "4.16.0-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-46848", + "installedVersion": "4.16.0-2", + "packageName": "libtasn1-6", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0343", + "https://access.redhat.com/security/cve/CVE-2021-46848", + "https://bugs.gentoo.org/866237", + "https://bugzilla.redhat.com/2140058", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + "https://errata.almalinux.org/9/ALSA-2023-0343.html", + "https://errata.rockylinux.org/RLSA-2023:0343", + "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + "https://gitlab.com/gnutls/libtasn1/-/issues/32", + "https://linux.oracle.com/cve/CVE-2021-46848.html", + "https://linux.oracle.com/errata/ELSA-2023-0343.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + "https://security.netapp.com/advisory/ntap-20221118-0006/", + "https://ubuntu.com/security/notices/USN-5707-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46848", + ], + }, + "category": "Vulnerability", + "description": "GNU Libtasn1 before 4.19.0 has an ETYPE_OK off-by-one array size check that affects asn1_encode_simple_der.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "libtasn1: Out-of-bound access in ETYPE_OK", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-46848", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0343", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/866237", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140058", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0343.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0343", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/-/issues/32", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-46848.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0343.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221118-0006/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5707-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-46848", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "6.2+20201114-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-29458", + "installedVersion": "6.2+20201114-2", + "packageName": "libtinfo6", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458", + ], + }, + "category": "Vulnerability", + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "ncurses: segfaulting OOB read", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29458", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/41", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#t20220416", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213488", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5477-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29458", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29491", + "installedVersion": "6.2+20201114-2", + "packageName": "libtinfo6", + "references": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4", + ], + }, + "category": "Vulnerability", + "description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Local users can trigger security-relevant memory corruption via malformed data", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29491", + }, + { + "type": "URL", + "value": "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/10", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/11", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230517-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/12/5", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/13/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3821", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821", + ], + }, + "category": "Vulnerability", + "description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "buffer overrun in format_timespan() function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3821", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0336", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2139327", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0336", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/23928", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/23933", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3821.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3821", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4415", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4415", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0954", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2155515", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0954", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4415.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/12/21/3", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4392", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392", + ], + }, + "category": "Vulnerability", + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4392", + }, + { + "type": "URL", + "value": "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2013/10/01/9", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4392", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-13529", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529", + ], + }, + "category": "Vulnerability", + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-13529", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-13529.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4361.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210625-0005/", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-13529", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "2.36.1-8+deb11u1", + "packageName": "libuuid1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4899", + "installedVersion": "1.4.8+dfsg-2.1", + "packageName": "libzstd1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-4899", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4899", + "https://github.com/facebook/zstd/issues/3200", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4899", + "https://www.cve.org/CVERecord?id=CVE-2022-4899", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in zstd v1.4.10, where an attacker can supply empty string as an argument to the command line tool to cause buffer overrun.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "buffer overrun in util.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4899", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4899", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4899", + }, + { + "type": "URL", + "value": "https://github.com/facebook/zstd/issues/3200", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4899", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4899", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-5686", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825", + ], + }, + "category": "Vulnerability", + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-5686", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/27215", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/26048", + }, + { + "type": "URL", + "value": "http://www.vupen.com/english/advisories/2007/3474", + }, + { + "type": "URL", + "value": "https://issues.rpath.com/browse/RPL-1825", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4235", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235", + ], + }, + "category": "Vulnerability", + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/issues/317", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/545", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-26", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4235", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19882", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882", + ], + }, + "category": "Vulnerability", + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19882", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://bugs.archlinux.org/task/64836", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/702252", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/199", + }, + { + "type": "URL", + "value": "https://github.com/void-linux/void-packages/pull/17580", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202008-09", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19882", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29383", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + ], + }, + "category": "Vulnerability", + "description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that "cat /etc/passwd" shows a rogue user account.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Improper input validation in shadow-utils package utility chfn", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/687", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "2.36.1-8+deb11u1", + "packageName": "mount", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "6.2+20201114-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-29458", + "installedVersion": "6.2+20201114-2", + "packageName": "ncurses-base", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458", + ], + }, + "category": "Vulnerability", + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "ncurses: segfaulting OOB read", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29458", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/41", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#t20220416", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213488", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5477-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29458", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29491", + "installedVersion": "6.2+20201114-2", + "packageName": "ncurses-base", + "references": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4", + ], + }, + "category": "Vulnerability", + "description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Local users can trigger security-relevant memory corruption via malformed data", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29491", + }, + { + "type": "URL", + "value": "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/10", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/11", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230517-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/12/5", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/13/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4450", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (e.g. "CERTIFICATE"), any header data and the payload data. If the function succeeds then the "name_out", "header" and "data" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "double free after calling PEM_read_bio_ex", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4450", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4450.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0215", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The public API function BIO_new_NDEF is a helper function used for streaming +ASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the +SMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by +end user applications. + +The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter +BIO onto the front of it to form a BIO chain, and then returns the new head of +the BIO chain to the caller. Under certain conditions, for example if a CMS +recipient public key is invalid, the new filter BIO is freed and the function +returns a NULL result indicating a failure. However, in this case, the BIO chain +is not properly cleaned up and the BIO passed by the caller still retains +internal pointers to the previously freed filter BIO. If the caller then goes on +to call BIO_pop() on the BIO then a use-after-free will occur. This will most +likely result in a crash. + + + +This scenario occurs directly in the internal function B64_write_ASN1() which +may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on +the BIO. This internal function is in turn called by the public API functions +PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, +SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. + +Other public API functions that may be impacted by this include +i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and +i2d_PKCS7_bio_stream. + +The OpenSSL cms and smime command line applications are similarly affected. + + + +", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "use-after-free following BIO_new_NDEF", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0215", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0215.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0007/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0286", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "X.400 address type confusion in X.509 GeneralName", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0286.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0464", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt", + ], + }, + "category": "Vulnerability", + "description": "A security vulnerability has been identified in all supported versions + +of OpenSSL related to the verification of X.509 certificate chains +that include policy constraints. Attackers may be able to exploit this +vulnerability by creating a malicious certificate chain that triggers +exponential use of computational resources, leading to a denial-of-service +(DoS) attack on affected systems. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0464", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230322.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-2650", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2097", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt", + ], + }, + "category": "Vulnerability", + "description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "AES OCB fails to encrypt some bytes", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2097", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2097.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220715-0011/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230420-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5502-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5343", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220705.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4304", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "timing attack in RSA Decryption implementation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4304", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4304.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0465", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "Applications that use a non-default option when verifying certificates may be +vulnerable to an attack from a malicious CA to circumvent certain checks. + +Invalid certificate policies in leaf certificates are silently ignored by +OpenSSL and other certificate policy checks are skipped for that certificate. +A malicious CA could use this to deliberately assert invalid certificate policies +in order to circumvent policy checking on the certificate altogether. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Invalid certificate policies in leaf certificates are silently ignored", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0465", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0466", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "The function X509_VERIFY_PARAM_add0_policy() is documented to +implicitly enable the certificate policy check when doing certificate +verification. However the implementation of the function does not +enable the check which allows certificates with invalid or incorrect +policies to pass the certificate verification. + +As suddenly enabling the policy check could break existing deployments it was +decided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy() +function. + +Instead the applications that require OpenSSL to perform certificate +policy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly +enable the policy check by calling X509_VERIFY_PARAM_set_flags() with +the X509_V_FLAG_POLICY_CHECK flag argument. + +Certificate policy checks are disabled by default in OpenSSL and are not +commonly used by applications.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Certificate policy check not enabled", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0466", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-6755", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + ], + }, + "category": "Vulnerability", + "description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain "skeleton key" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Dual_EC_DRBG: weak pseudo random number generator", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-6755", + }, + { + "type": "URL", + "value": "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + }, + { + "type": "URL", + "value": "http://rump2007.cr.yp.to/15-shumow.pdf", + }, + { + "type": "URL", + "value": "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + }, + { + "type": "URL", + "value": "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/63657", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-0928", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928", + ], + }, + "category": "Vulnerability", + "description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a "fault-based attack."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "openssl: RSA authentication weakness", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-0928", + }, + { + "type": "URL", + "value": "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + }, + { + "type": "URL", + "value": "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + }, + { + "type": "URL", + "value": "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + }, + { + "type": "URL", + "value": "http://www.osvdb.org/62808", + }, + { + "type": "URL", + "value": "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-0928", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-5686", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825", + ], + }, + "category": "Vulnerability", + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-5686", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/27215", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/26048", + }, + { + "type": "URL", + "value": "http://www.vupen.com/english/advisories/2007/3474", + }, + { + "type": "URL", + "value": "https://issues.rpath.com/browse/RPL-1825", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4235", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235", + ], + }, + "category": "Vulnerability", + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/issues/317", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/545", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-26", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4235", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19882", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882", + ], + }, + "category": "Vulnerability", + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19882", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://bugs.archlinux.org/task/64836", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/702252", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/199", + }, + { + "type": "URL", + "value": "https://github.com/void-linux/void-packages/pull/17580", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202008-09", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19882", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29383", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + ], + }, + "category": "Vulnerability", + "description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that "cat /etc/passwd" shows a rogue user account.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Improper input validation in shadow-utils package utility chfn", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/687", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-16156", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + "https://access.redhat.com/security/cve/CVE-2020-16156", + "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + "https://ubuntu.com/security/notices/USN-5689-1", + "https://ubuntu.com/security/notices/USN-5689-2", + "https://www.cve.org/CVERecord?id=CVE-2020-16156", + ], + }, + "category": "Vulnerability", + "description": "CPAN 2.28 allows Signature Verification Bypass.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "perl-CPAN: Bypass of verification of signatures in CHECKSUMS files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-16156", + }, + { + "type": "URL", + "value": "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + }, + { + "type": "URL", + "value": "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5689-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5689-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-16156", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31484", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + "https://github.com/andk/cpanpm/pull/175", + "https://metacpan.org/dist/CPAN/changes", + "https://ubuntu.com/security/notices/USN-6112-1", + "https://ubuntu.com/security/notices/USN-6112-2", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + ], + }, + "category": "Vulnerability", + "description": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "CPAN.pm before 2.35 does not verify TLS certificates when downloading ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31484", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/29/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/5", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/07/2", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + }, + { + "type": "URL", + "value": "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + }, + { + "type": "URL", + "value": "https://github.com/andk/cpanpm/pull/175", + }, + { + "type": "URL", + "value": "https://metacpan.org/dist/CPAN/changes", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6112-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6112-2", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/18/14", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-4116", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2011/11/04/2", + "http://www.openwall.com/lists/oss-security/2011/11/04/4", + "https://access.redhat.com/security/cve/CVE-2011-4116", + "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + "https://seclists.org/oss-sec/2011/q4/238", + "https://www.cve.org/CVERecord?id=CVE-2011-4116", + ], + }, + "category": "Vulnerability", + "description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "perl: File::Temp insecure temporary file handling", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-4116", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2011/11/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2011/11/04/4", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2011-4116", + }, + { + "type": "URL", + "value": "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + }, + { + "type": "URL", + "value": "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + }, + { + "type": "URL", + "value": "https://seclists.org/oss-sec/2011/q4/238", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2011-4116", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31486", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://hackeriet.github.io/cpan-http-tiny-overview/", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + "https://www.openwall.com/lists/oss-security/2023/05/03/4", + "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/", + ], + }, + "category": "Vulnerability", + "description": "HTTP::Tiny 0.082, a Perl core module since 5.13.9 and available standalone on CPAN, has an insecure default TLS configuration where users must opt in to verify certificates.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "HTTP::Tiny 0.082, a Perl core module since 5.13.9 and available standa ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31486", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/29/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/5", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/07/2", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + }, + { + "type": "URL", + "value": "https://hackeriet.github.io/cpan-http-tiny-overview/", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/18/14", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/05/03/4", + }, + { + "type": "URL", + "value": "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2005-2541", + "installedVersion": "1.34+dfsg-1", + "packageName": "tar", + "references": [ + "http://marc.info/?l=bugtraq&m=112327628230258&w=2", + "https://access.redhat.com/security/cve/CVE-2005-2541", + "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + "https://www.cve.org/CVERecord?id=CVE-2005-2541", + ], + }, + "category": "Vulnerability", + "description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "tar: does not properly warn the user when extracting setuid or setgid files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2005-2541", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=112327628230258&w=2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2005-2541", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2005-2541", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-48303", + "installedVersion": "1.34+dfsg-1", + "packageName": "tar", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0959", + "https://access.redhat.com/security/cve/CVE-2022-48303", + "https://bugzilla.redhat.com/2149722", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + "https://errata.almalinux.org/9/ALSA-2023-0959.html", + "https://errata.rockylinux.org/RLSA-2023:0959", + "https://linux.oracle.com/cve/CVE-2022-48303.html", + "https://linux.oracle.com/errata/ELSA-2023-0959.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + "https://savannah.gnu.org/bugs/?62387", + "https://savannah.gnu.org/patch/?10307", + "https://ubuntu.com/security/notices/USN-5900-1", + "https://ubuntu.com/security/notices/USN-5900-2", + "https://www.cve.org/CVERecord?id=CVE-2022-48303", + ], + }, + "category": "Vulnerability", + "description": "GNU Tar through 1.34 has a one-byte out-of-bounds read that results in use of uninitialized memory for a conditional jump. Exploitation to change the flow of control has not been demonstrated. The issue occurs in from_header in list.c via a V7 archive in which mtime has approximately 11 whitespace characters.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "heap buffer overflow at from_header() in list.c via specially crafted checksum", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-48303", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0959", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149722", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0959.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0959", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-48303.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0959.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/bugs/?62387", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/patch/?10307", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5900-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5900-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-48303", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "2.36.1-8+deb11u1", + "packageName": "util-linux", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.1.5", + "foundIn": "Target: 'opt/bitnami/common/bin/gosu' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2023-27561", + "installedVersion": "v1.0.1", + "packageName": "github.com/opencontainers/runc", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-27561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27561", + "https://gist.github.com/LiveOverflow/c937820b688922eb127fb760ce06dab9", + "https://github.com/advisories/GHSA-vpvm-3wq2-2wvm", + "https://github.com/opencontainers/runc/issues/2197#issuecomment-1437617334", + "https://github.com/opencontainers/runc/issues/3751", + "https://github.com/opencontainers/runc/pull/3785", + "https://github.com/opencontainers/runc/releases/tag/v1.1.5", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DHGVGGMKGZSJ7YO67TGGPFEHBYMS63VF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FYVE3GB4OG3BNT5DLQHYO4M5SXX33AQ5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I6BF24VCZRFTYBTT3T7HDZUOTKOTNPLZ/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27561", + "https://ubuntu.com/security/notices/USN-6088-1", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27561", + ], + }, + "category": "Vulnerability", + "description": "runc through 1.1.4 has Incorrect Access Control leading to Escalation of Privileges, related to libcontainer/rootfs_linux.go. To exploit this, an attacker must be able to spawn two containers with custom volume-mount configurations, and be able to run custom images. NOTE: this issue exists because of a CVE-2019-19921 regression.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "volume mount race condition (regression of CVE-2019-19921)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-27561", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-27561", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27561", + }, + { + "type": "URL", + "value": "https://gist.github.com/LiveOverflow/c937820b688922eb127fb760ce06dab9", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vpvm-3wq2-2wvm", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/issues/2197#issuecomment-1437617334", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/issues/3751", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/pull/3785", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/releases/tag/v1.1.5", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DHGVGGMKGZSJ7YO67TGGPFEHBYMS63VF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FYVE3GB4OG3BNT5DLQHYO4M5SXX33AQ5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I6BF24VCZRFTYBTT3T7HDZUOTKOTNPLZ/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-27561", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-27561", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.0", + "foundIn": "Target: 'opt/bitnami/common/bin/gosu' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-43784", + "installedVersion": "v1.0.1", + "packageName": "github.com/opencontainers/runc", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-43784", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=2241", + "https://github.com/advisories/GHSA-v95c-p5hm-xq8f", + "https://github.com/opencontainers/runc/commit/9c444070ec7bb83995dbc0185da68284da71c554", + "https://github.com/opencontainers/runc/commit/d72d057ba794164c3cce9451a00b72a78b25e1ae", + "https://github.com/opencontainers/runc/commit/dde509df4e28cec33b3c99c6cda3d4fd5beafc77", + "https://github.com/opencontainers/runc/commit/f50369af4b571e358f20b139eea52d612eb55eed", + "https://github.com/opencontainers/runc/security/advisories/GHSA-v95c-p5hm-xq8f", + "https://lists.debian.org/debian-lts-announce/2021/12/msg00005.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43784", + "https://pkg.go.dev/vuln/GO-2022-0274", + "https://www.cve.org/CVERecord?id=CVE-2021-43784", + ], + }, + "category": "Vulnerability", + "description": "runc is a CLI tool for spawning and running containers on Linux according to the OCI specification. In runc, netlink is used internally as a serialization system for specifying the relevant container configuration to the \`C\` portion of the code (responsible for the based namespace setup of containers). In all versions of runc prior to 1.0.3, the encoder did not handle the possibility of an integer overflow in the 16-bit length field for the byte array attribute type, meaning that a large enough malicious byte array attribute could result in the length overflowing and the attribute contents being parsed as netlink messages for container configuration. This vulnerability requires the attacker to have some control over the configuration of the container and would allow the attacker to bypass the namespace restrictions of the container by simply adding their own netlink payload which disables all namespaces. The main users impacted are those who allow untrusted images with untrusted configurations to run on their machines (such as with shared cloud infrastructure). runc version 1.0.3 contains a fix for this bug. As a workaround, one may try disallowing untrusted namespace paths from your container. It should be noted that untrusted namespace paths would allow the attacker to disable namespace protections entirely even in the absence of this bug.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "runc: integer overflow in netlink bytemsg length field allows attacker to override netlink-based container configuration", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-43784", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-43784", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/project-zero/issues/detail?id=2241", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-v95c-p5hm-xq8f", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/9c444070ec7bb83995dbc0185da68284da71c554", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/d72d057ba794164c3cce9451a00b72a78b25e1ae", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/dde509df4e28cec33b3c99c6cda3d4fd5beafc77", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/f50369af4b571e358f20b139eea52d612eb55eed", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/security/advisories/GHSA-v95c-p5hm-xq8f", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/12/msg00005.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-43784", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0274", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-43784", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.2", + "foundIn": "Target: 'opt/bitnami/common/bin/gosu' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29162", + "installedVersion": "v1.0.1", + "packageName": "github.com/opencontainers/runc", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8090", + "https://access.redhat.com/security/cve/CVE-2022-29162", + "https://bugzilla.redhat.com/2086398", + "https://bugzilla.redhat.com/show_bug.cgi?id=2086398", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29162", + "https://errata.almalinux.org/9/ALSA-2022-8090.html", + "https://errata.rockylinux.org/RLSA-2022:8090", + "https://github.com/advisories/GHSA-f3fp-gc8g-vw66", + "https://github.com/opencontainers/runc/commit/98fe566c527479195ce3c8167136d2a555fe6b65", + "https://github.com/opencontainers/runc/commit/d04de3a9b72d7a2455c1885fc75eb36d02cd17b5", + "https://github.com/opencontainers/runc/releases/tag/v1.1.2", + "https://github.com/opencontainers/runc/security/advisories/GHSA-f3fp-gc8g-vw66", + "https://linux.oracle.com/cve/CVE-2022-29162.html", + "https://linux.oracle.com/errata/ELSA-2022-8090.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AVPZBV7ISA7QKRPTC7ZXWKMIQI2HZEBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/D77CKD3AXPMU4PMQIQI5Q74SI4JATNND/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GPQU4YC4AAY54JDXGDQHJEYKSXXG5T2Y/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29162", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2022-29162", + "https://www.openwall.com/lists/oss-security/2022/05/12/1", + ], + }, + "category": "Vulnerability", + "description": "runc is a CLI tool for spawning and running containers on Linux according to the OCI specification. A bug was found in runc prior to version 1.1.2 where \`runc exec --cap\` created processes with non-empty inheritable Linux process capabilities, creating an atypical Linux environment and enabling programs with inheritable file capabilities to elevate those capabilities to the permitted set during execve(2). This bug did not affect the container security sandbox as the inheritable set never contained more capabilities than were included in the container's bounding set. This bug has been fixed in runc 1.1.2. This fix changes \`runc exec --cap\` behavior such that the additional capabilities granted to the process being executed (as specified via \`--cap\` arguments) do not include inheritable capabilities. In addition, \`runc spec\` is changed to not set any inheritable capabilities in the created example OCI spec (\`config.json\`) file.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "runc: incorrect handling of inheritable capabilities", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29162", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8090", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29162", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2086398", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2086398", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29162", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8090.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8090", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-f3fp-gc8g-vw66", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/98fe566c527479195ce3c8167136d2a555fe6b65", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/d04de3a9b72d7a2455c1885fc75eb36d02cd17b5", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/releases/tag/v1.1.2", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/security/advisories/GHSA-f3fp-gc8g-vw66", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29162.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8090.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AVPZBV7ISA7QKRPTC7ZXWKMIQI2HZEBB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/D77CKD3AXPMU4PMQIQI5Q74SI4JATNND/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GPQU4YC4AAY54JDXGDQHJEYKSXXG5T2Y/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29162", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29162", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/05/12/1", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.5", + "foundIn": "Target: 'opt/bitnami/common/bin/gosu' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2023-28642", + "installedVersion": "v1.0.1", + "packageName": "github.com/opencontainers/runc", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-28642", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28642", + "https://github.com/advisories/GHSA-g2j6-57v7-gm8c", + "https://github.com/opencontainers/runc/pull/3785", + "https://github.com/opencontainers/runc/security/advisories/GHSA-g2j6-57v7-gm8c", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28642", + "https://ubuntu.com/security/notices/USN-6088-1", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2023-28642", + ], + }, + "category": "Vulnerability", + "description": "runc is a CLI tool for spawning and running containers according to the OCI specification. It was found that AppArmor can be bypassed when \`/proc\` inside the container is symlinked with a specific mount configuration. This issue has been fixed in runc version 1.1.5, by prohibiting symlinked \`/proc\`. See PR #3785 for details. users are advised to upgrade. Users unable to upgrade should avoid using an untrusted container image.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "AppArmor can be bypassed when \`/proc\` inside the container is symlinked with a specific mount configuration", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-28642", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-28642", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28642", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-g2j6-57v7-gm8c", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/pull/3785", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/security/advisories/GHSA-g2j6-57v7-gm8c", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-28642", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-28642", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.5", + "foundIn": "Target: 'opt/bitnami/common/bin/gosu' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2023-25809", + "installedVersion": "v1.0.1", + "packageName": "github.com/opencontainers/runc", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-25809", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-25809", + "https://github.com/advisories/GHSA-m8cg-xc2p-r3fc", + "https://github.com/opencontainers/runc/commit/0d62b950e60f6980b54fe3bafd9a9c608dc1df17", + "https://github.com/opencontainers/runc/commit/0e6b818a2b0d24fdb6697614e5c5f115bbe8e3a5 (v1.1.5)", + "https://github.com/opencontainers/runc/security/advisories/GHSA-m8cg-xc2p-r3fc", + "https://nvd.nist.gov/vuln/detail/CVE-2023-25809", + "https://ubuntu.com/security/notices/USN-6088-1", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2023-25809", + ], + }, + "category": "Vulnerability", + "description": "runc is a CLI tool for spawning and running containers according to the OCI specification. In affected versions it was found that rootless runc makes \`/sys/fs/cgroup\` writable in following conditons: 1. when runc is executed inside the user namespace, and the \`config.json\` does not specify the cgroup namespace to be unshared (e.g.., \`(docker|podman|nerdctl) run --cgroupns=host\`, with Rootless Docker/Podman/nerdctl) or 2. when runc is executed outside the user namespace, and \`/sys\` is mounted with \`rbind, ro\` (e.g., \`runc spec --rootless\`; this condition is very rare). A container may gain the write access to user-owned cgroup hierarchy \`/sys/fs/cgroup/user.slice/...\` on the host . Other users's cgroup hierarchies are not affected. Users are advised to upgrade to version 1.1.5. Users unable to upgrade may unshare the cgroup namespace (\`(docker|podman|nerdctl) run --cgroupns=private)\`. This is the default behavior of Docker/Podman/nerdctl on cgroup v2 hosts. or add \`/sys/fs/cgroup\` to \`maskedPaths\`.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Rootless runc makes \`/sys/fs/cgroup\` writable", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-25809", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-25809", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-25809", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-m8cg-xc2p-r3fc", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/0d62b950e60f6980b54fe3bafd9a9c608dc1df17", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/0e6b818a2b0d24fdb6697614e5c5f115bbe8e3a5 (v1.1.5)", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/security/advisories/GHSA-m8cg-xc2p-r3fc", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-25809", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-25809", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220412211240-33da011f77ad", + "foundIn": "Target: 'opt/bitnami/common/bin/gosu' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29526", + "installedVersion": "v0.0.0-20210817142637-7d9622a276b7", + "packageName": "golang.org/x/sys", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526", + ], + }, + "category": "Vulnerability", + "description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "faccessat checks wrong group", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29526", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/52313", + }, + { + "type": "URL", + "value": "https://go.dev/cl/399539", + }, + { + "type": "URL", + "value": "https://go.dev/cl/400074", + }, + { + "type": "URL", + "value": "https://go.dev/issue/52313", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29526.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5337.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0493", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29526", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220412211240-33da011f77ad", + "foundIn": "Target: 'opt/bitnami/common/bin/wait-for-port' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29526", + "installedVersion": "v0.0.0-20210510120138-977fb7262007", + "packageName": "golang.org/x/sys", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526", + ], + }, + "category": "Vulnerability", + "description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "faccessat checks wrong group", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29526", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/52313", + }, + { + "type": "URL", + "value": "https://go.dev/cl/399539", + }, + { + "type": "URL", + "value": "https://go.dev/cl/400074", + }, + { + "type": "URL", + "value": "https://go.dev/issue/52313", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29526.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5337.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0493", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29526", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'opt/bitnami/minio-client/bin/mc' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.1.1-0.20221104162952-702349b0e862", + "foundIn": "Target: 'opt/bitnami/minio-client/bin/mc' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41721", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41721", + "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + "https://go.dev/cl/447396", + "https://go.dev/issue/56352", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + "https://pkg.go.dev/vuln/GO-2023-1495", + "https://www.cve.org/CVERecord?id=CVE-2022-41721", + ], + }, + "category": "Vulnerability", + "description": "A request smuggling attack is possible when using MaxBytesHandler. When using MaxBytesHandler, the body of an HTTP request is not fully consumed. When the server attempts to read HTTP2 frames from the connection, it will instead be reading the body of the HTTP request, which could be attacker-manipulated to represent arbitrary HTTP2 requests.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "request smuggling", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41721", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + }, + { + "type": "URL", + "value": "https://go.dev/cl/447396", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56352", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1495", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41721", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'opt/bitnami/minio-client/bin/mc' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'opt/bitnami/minio-client/bin/mc' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'opt/bitnami/minio-client/bin/mc' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.7", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-2835", + "installedVersion": "v1.9.3", + "packageName": "github.com/coredns/coredns", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-2835", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118542", + "https://github.com/advisories/GHSA-ch7v-37xg-75ph", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2835", + "https://www.cve.org/CVERecord?id=CVE-2022-2835", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in coreDNS. This flaw allows a malicious user to reroute internal calls to some internal services that were accessed by the FQDN in a format of ..svc.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "coreDNS: DNS Redirection of Internal Services", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2835", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2835", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2118542", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-ch7v-37xg-75ph", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2835", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2835", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-2837", + "installedVersion": "v1.9.3", + "packageName": "github.com/coredns/coredns", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-2837", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118543", + "https://github.com/advisories/GHSA-h828-v5pv-33qx", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2837", + "https://www.cve.org/CVERecord?id=CVE-2022-2837", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in coreDNS. This flaw allows a malicious user to redirect traffic intended for external top-level domains (TLD) to a pod they control by creating projects and namespaces that match the TLD.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "DNS Redirection of Top-Level Domains", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2837", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2837", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2118543", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-h828-v5pv-33qx", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2837", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2837", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.28.0", + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2023-33955", + "installedVersion": "v0.20.0", + "packageName": "github.com/minio/console", + "references": [ + "https://github.com/advisories/GHSA-jv3f-7m33-qp65", + "https://github.com/minio/console/commit/17e791afb90c9ad27c65f63c6be14f2f6a3a9d60", + "https://github.com/minio/console/releases/tag/v0.28.0", + "https://github.com/minio/console/security/advisories/GHSA-jv3f-7m33-qp65", + "https://nvd.nist.gov/vuln/detail/CVE-2023-33955", + ], + }, + "category": "Vulnerability", + "description": "Minio Console is the UI for MinIO Object Storage. Unicode RIGHT-TO-LEFT OVERRIDE characters can be used to mask the original filename. This issue has been patched in version 0.28.0. + +", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Minio console object names with RIGHT-TO-LEFT OVERRIDE unicode character can be exploited", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-33955", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-jv3f-7m33-qp65", + }, + { + "type": "URL", + "value": "https://github.com/minio/console/commit/17e791afb90c9ad27c65f63c6be14f2f6a3a9d60", + }, + { + "type": "URL", + "value": "https://github.com/minio/console/releases/tag/v0.28.0", + }, + { + "type": "URL", + "value": "https://github.com/minio/console/security/advisories/GHSA-jv3f-7m33-qp65", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-33955", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.1.1-0.20221104162952-702349b0e862", + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41721", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41721", + "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + "https://go.dev/cl/447396", + "https://go.dev/issue/56352", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + "https://pkg.go.dev/vuln/GO-2023-1495", + "https://www.cve.org/CVERecord?id=CVE-2022-41721", + ], + }, + "category": "Vulnerability", + "description": "A request smuggling attack is possible when using MaxBytesHandler. When using MaxBytesHandler, the body of an HTTP request is not fully consumed. When the server attempts to read HTTP2 frames from the connection, it will instead be reading the body of the HTTP request, which could be attacker-manipulated to represent arbitrary HTTP2 requests.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "request smuggling", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41721", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + }, + { + "type": "URL", + "value": "https://go.dev/cl/447396", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56352", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1495", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41721", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.7", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'minio' of Deployment 'securecodebox-operator-minio' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV015", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015", + ], + }, + "category": "Misconfiguration", + "description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set 'containers[].resources.requests.cpu'.", + "name": "CPU requests not specified(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'resources.requests.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv015", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "foundIn": "Target: 'usr/local/bin/etcd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27191", + "installedVersion": "v0.0.0-20220131195533-30dcbda58838", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191", + ], + }, + "category": "Vulnerability", + "description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "crash in a golang.org/x/crypto/ssh server", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27191", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8008", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1939485", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989564", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989570", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989575", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2064702", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121453", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + }, + { + "type": "URL", + "value": "https://go.dev/cl/392355", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27191.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0356", + }, + { + "type": "URL", + "value": "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220429-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27191", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20211209124913-491a49abca63", + "foundIn": "Target: 'usr/local/bin/etcd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-44716", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/go/issues/50058", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716", + ], + }, + "category": "Vulnerability", + "description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "golang: net/http: limit growth of header canonicalization cache", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-44716", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/50058", + }, + { + "type": "URL", + "value": "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + }, + { + "type": "URL", + "value": "https://go.dev/cl/369794", + }, + { + "type": "URL", + "value": "https://go.dev/issue/50058", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-44716.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-0001.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0288", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220121-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-44716", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'usr/local/bin/etcd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'usr/local/bin/etcd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'usr/local/bin/etcd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220412211240-33da011f77ad", + "foundIn": "Target: 'usr/local/bin/etcd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29526", + "installedVersion": "v0.0.0-20210615035016-665e8c7367d1", + "packageName": "golang.org/x/sys", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526", + ], + }, + "category": "Vulnerability", + "description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "faccessat checks wrong group", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29526", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/52313", + }, + { + "type": "URL", + "value": "https://go.dev/cl/399539", + }, + { + "type": "URL", + "value": "https://go.dev/cl/400074", + }, + { + "type": "URL", + "value": "https://go.dev/issue/52313", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29526.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5337.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0493", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29526", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.7", + "foundIn": "Target: 'usr/local/bin/etcd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-38561", + "installedVersion": "v0.3.6", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561", + ], + }, + "category": "Vulnerability", + "description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-38561", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://deps.dev/advisory/OSV/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + }, + { + "type": "URL", + "value": "https://go.dev/cl/340830", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/golang.org/x/text/language", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-38561", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'usr/local/bin/etcd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.6", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "foundIn": "Target: 'usr/local/bin/etcd-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27191", + "installedVersion": "v0.0.0-20220131195533-30dcbda58838", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191", + ], + }, + "category": "Vulnerability", + "description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "crash in a golang.org/x/crypto/ssh server", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27191", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8008", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1939485", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989564", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989570", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989575", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2064702", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121453", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + }, + { + "type": "URL", + "value": "https://go.dev/cl/392355", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27191.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0356", + }, + { + "type": "URL", + "value": "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220429-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27191", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20211209124913-491a49abca63", + "foundIn": "Target: 'usr/local/bin/etcd-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-44716", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/go/issues/50058", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716", + ], + }, + "category": "Vulnerability", + "description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "golang: net/http: limit growth of header canonicalization cache", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-44716", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/50058", + }, + { + "type": "URL", + "value": "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + }, + { + "type": "URL", + "value": "https://go.dev/cl/369794", + }, + { + "type": "URL", + "value": "https://go.dev/issue/50058", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-44716.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-0001.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0288", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220121-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-44716", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'usr/local/bin/etcd-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'usr/local/bin/etcd-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'usr/local/bin/etcd-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220412211240-33da011f77ad", + "foundIn": "Target: 'usr/local/bin/etcd-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29526", + "installedVersion": "v0.0.0-20210615035016-665e8c7367d1", + "packageName": "golang.org/x/sys", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526", + ], + }, + "category": "Vulnerability", + "description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "faccessat checks wrong group", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29526", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/52313", + }, + { + "type": "URL", + "value": "https://go.dev/cl/399539", + }, + { + "type": "URL", + "value": "https://go.dev/cl/400074", + }, + { + "type": "URL", + "value": "https://go.dev/issue/52313", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29526.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5337.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0493", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29526", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.7", + "foundIn": "Target: 'usr/local/bin/etcd-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-38561", + "installedVersion": "v0.3.6", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561", + ], + }, + "category": "Vulnerability", + "description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-38561", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://deps.dev/advisory/OSV/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + }, + { + "type": "URL", + "value": "https://go.dev/cl/340830", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/golang.org/x/text/language", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-38561", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'usr/local/bin/etcd-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.6", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "foundIn": "Target: 'usr/local/bin/etcdctl' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27191", + "installedVersion": "v0.0.0-20220131195533-30dcbda58838", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191", + ], + }, + "category": "Vulnerability", + "description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "crash in a golang.org/x/crypto/ssh server", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27191", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8008", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1939485", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989564", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989570", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989575", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2064702", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121453", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + }, + { + "type": "URL", + "value": "https://go.dev/cl/392355", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27191.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0356", + }, + { + "type": "URL", + "value": "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220429-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27191", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20211209124913-491a49abca63", + "foundIn": "Target: 'usr/local/bin/etcdctl' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-44716", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/go/issues/50058", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716", + ], + }, + "category": "Vulnerability", + "description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "golang: net/http: limit growth of header canonicalization cache", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-44716", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/50058", + }, + { + "type": "URL", + "value": "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + }, + { + "type": "URL", + "value": "https://go.dev/cl/369794", + }, + { + "type": "URL", + "value": "https://go.dev/issue/50058", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-44716.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-0001.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0288", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220121-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-44716", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'usr/local/bin/etcdctl' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'usr/local/bin/etcdctl' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'usr/local/bin/etcdctl' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220412211240-33da011f77ad", + "foundIn": "Target: 'usr/local/bin/etcdctl' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29526", + "installedVersion": "v0.0.0-20210615035016-665e8c7367d1", + "packageName": "golang.org/x/sys", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526", + ], + }, + "category": "Vulnerability", + "description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "faccessat checks wrong group", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29526", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/52313", + }, + { + "type": "URL", + "value": "https://go.dev/cl/399539", + }, + { + "type": "URL", + "value": "https://go.dev/cl/400074", + }, + { + "type": "URL", + "value": "https://go.dev/issue/52313", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29526.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5337.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0493", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29526", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.7", + "foundIn": "Target: 'usr/local/bin/etcdctl' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-38561", + "installedVersion": "v0.3.6", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561", + ], + }, + "category": "Vulnerability", + "description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-38561", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://deps.dev/advisory/OSV/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + }, + { + "type": "URL", + "value": "https://go.dev/cl/340830", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/golang.org/x/text/language", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-38561", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'usr/local/bin/etcdctl' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.6", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "foundIn": "Target: 'usr/local/bin/etcdctl-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27191", + "installedVersion": "v0.0.0-20220131195533-30dcbda58838", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191", + ], + }, + "category": "Vulnerability", + "description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "crash in a golang.org/x/crypto/ssh server", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27191", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8008", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1939485", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989564", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989570", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989575", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2064702", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121453", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + }, + { + "type": "URL", + "value": "https://go.dev/cl/392355", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27191.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0356", + }, + { + "type": "URL", + "value": "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220429-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27191", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20211209124913-491a49abca63", + "foundIn": "Target: 'usr/local/bin/etcdctl-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-44716", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/go/issues/50058", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716", + ], + }, + "category": "Vulnerability", + "description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "golang: net/http: limit growth of header canonicalization cache", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-44716", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/50058", + }, + { + "type": "URL", + "value": "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + }, + { + "type": "URL", + "value": "https://go.dev/cl/369794", + }, + { + "type": "URL", + "value": "https://go.dev/issue/50058", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-44716.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-0001.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0288", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220121-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-44716", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'usr/local/bin/etcdctl-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'usr/local/bin/etcdctl-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'usr/local/bin/etcdctl-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220412211240-33da011f77ad", + "foundIn": "Target: 'usr/local/bin/etcdctl-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29526", + "installedVersion": "v0.0.0-20210615035016-665e8c7367d1", + "packageName": "golang.org/x/sys", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526", + ], + }, + "category": "Vulnerability", + "description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "faccessat checks wrong group", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29526", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/52313", + }, + { + "type": "URL", + "value": "https://go.dev/cl/399539", + }, + { + "type": "URL", + "value": "https://go.dev/cl/400074", + }, + { + "type": "URL", + "value": "https://go.dev/issue/52313", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29526.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5337.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0493", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29526", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.7", + "foundIn": "Target: 'usr/local/bin/etcdctl-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-38561", + "installedVersion": "v0.3.6", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561", + ], + }, + "category": "Vulnerability", + "description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-38561", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://deps.dev/advisory/OSV/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + }, + { + "type": "URL", + "value": "https://go.dev/cl/340830", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/golang.org/x/text/language", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-38561", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'usr/local/bin/etcdctl-3.5.3' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.6", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'etcd' of Pod 'etcd-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV009", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009", + ], + }, + "category": "Misconfiguration", + "description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Do not set 'spec.template.spec.hostNetwork' to true.", + "name": "Access to host network(Pod 'etcd-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv009", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV023", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023", + ], + }, + "category": "Misconfiguration", + "description": "HostPath volumes must be forbidden.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Do not set 'spec.volumes[*].hostPath'.", + "name": "hostPath volumes mounted(Pod 'etcd-kind-control-plane' should not set 'spec.template.volumes.hostPath')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv023", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3374", + "installedVersion": "2.2.4", + "packageName": "apt", + "references": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374", + ], + }, + "category": "Vulnerability", + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + }, + { + "type": "URL", + "value": "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + }, + { + "type": "URL", + "value": "https://seclists.org/fulldisclosure/2011/Sep/221", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2011-3374", + }, + { + "type": "URL", + "value": "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2011-3374", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "1:2.36.1-8+deb11u1", + "packageName": "bsdutils", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2016-2781", + "installedVersion": "8.32-4+b1", + "packageName": "coreutils", + "references": [ + "http://seclists.org/oss-sec/2016/q1/452", + "http://www.openwall.com/lists/oss-security/2016/02/28/2", + "http://www.openwall.com/lists/oss-security/2016/02/28/3", + "https://access.redhat.com/security/cve/CVE-2016-2781", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lore.kernel.org/patchwork/patch/793178/", + "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + "https://www.cve.org/CVERecord?id=CVE-2016-2781", + ], + }, + "category": "Vulnerability", + "description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "coreutils: Non-privileged session can escape to the parent session in chroot", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2016-2781", + }, + { + "type": "URL", + "value": "http://seclists.org/oss-sec/2016/q1/452", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2016/02/28/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2016/02/28/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/patchwork/patch/793178/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2016-2781", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-18018", + "installedVersion": "8.32-4+b1", + "packageName": "coreutils", + "references": [ + "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + "https://access.redhat.com/security/cve/CVE-2017-18018", + "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + "https://www.cve.org/CVERecord?id=CVE-2017-18018", + ], + }, + "category": "Vulnerability", + "description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX "-R -L" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "coreutils: race condition vulnerability in chown and chgrp", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-18018", + }, + { + "type": "URL", + "value": "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-18018", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-18018", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.20.10", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1664", + "installedVersion": "1.20.9", + "packageName": "dpkg", + "references": [ + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1664", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f23dddc17f69c9598477098c7fb9936e15fa495", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=58814cacee39c4ce9e2cd0e3a3b9b57ad437eff5", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=7a6c03cb34d4a09f35df2f10779cbf1b70a5200b", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=faa4c92debe45412bfcf8a44f26e827800bb24be", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00033.html", + "https://lists.debian.org/debian-security-announce/2022/msg00115.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1664", + "https://security.netapp.com/advisory/ntap-20221007-0002/", + "https://ubuntu.com/security/notices/USN-5446-1", + "https://ubuntu.com/security/notices/USN-5446-2", + ], + }, + "category": "Vulnerability", + "description": "Dpkg::Source::Archive in dpkg, the Debian package management system, before version 1.21.8, 1.20.10, 1.19.8, 1.18.26 is prone to a directory traversal vulnerability. When extracting untrusted source packages in v2 and v3 source package formats that include a debian.tar, the in-place extraction can lead to directory traversal situations on specially crafted orig.tar and debian.tar tarballs.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Dpkg::Source::Archive in dpkg, the Debian package management system, b ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1664", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f23dddc17f69c9598477098c7fb9936e15fa495", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=58814cacee39c4ce9e2cd0e3a3b9b57ad437eff5", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=7a6c03cb34d4a09f35df2f10779cbf1b70a5200b", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=faa4c92debe45412bfcf8a44f26e827800bb24be", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/05/msg00033.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-security-announce/2022/msg00115.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1664", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221007-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5446-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5446-2", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.2.27-2+deb11u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-34903", + "installedVersion": "2.2.27-2+deb11u1", + "packageName": "gpgv", + "references": [ + "http://www.openwall.com/lists/oss-security/2022/07/02/1", + "https://access.redhat.com/errata/RHSA-2022:6602", + "https://access.redhat.com/security/cve/CVE-2022-34903", + "https://bugs.debian.org/1014157", + "https://bugzilla.redhat.com/2102868", + "https://bugzilla.redhat.com/show_bug.cgi?id=2102868", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34903", + "https://dev.gnupg.org/T6027", + "https://errata.almalinux.org/9/ALSA-2022-6602.html", + "https://errata.rockylinux.org/RLSA-2022:6602", + "https://linux.oracle.com/cve/CVE-2022-34903.html", + "https://linux.oracle.com/errata/ELSA-2022-6602.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-34903", + "https://security.netapp.com/advisory/ntap-20220826-0005/", + "https://ubuntu.com/security/notices/USN-5503-1", + "https://ubuntu.com/security/notices/USN-5503-2", + "https://www.cve.org/CVERecord?id=CVE-2022-34903", + "https://www.debian.org/security/2022/dsa-5174", + "https://www.openwall.com/lists/oss-security/2022/06/30/1", + ], + }, + "category": "Vulnerability", + "description": "GnuPG through 2.3.6, in unusual situations where an attacker possesses any secret-key information from a victim's keyring and other constraints (e.g., use of GPGME) are met, allows signature forgery via injection into the status line.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Signature spoofing via status line injection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-34903", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/07/02/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6602", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/1014157", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2102868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2102868", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T6027", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6602.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:6602", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-34903.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-6602.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220826-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5503-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5503-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5174", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/06/30/1", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3219", + "installedVersion": "2.2.27-2+deb11u1", + "packageName": "gpgv", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-3219", + "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + "https://dev.gnupg.org/D556", + "https://dev.gnupg.org/T5993", + "https://marc.info/?l=oss-security&m=165696590211434&w=4", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + "https://security.netapp.com/advisory/ntap-20230324-0001/", + "https://www.cve.org/CVERecord?id=CVE-2022-3219", + ], + }, + "category": "Vulnerability", + "description": "GnuPG can be made to spin on a relatively small input by (for example) crafting a public key with thousands of signatures attached, compressed down to just a few KB.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "denial of service issue (resource consumption) using compressed packets", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3219", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3219", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/D556", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5993", + }, + { + "type": "URL", + "value": "https://marc.info/?l=oss-security&m=165696590211434&w=4", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230324-0001/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3219", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.10-4+deb11u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1271", + "installedVersion": "1.10-4", + "packageName": "gzip", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8", + ], + }, + "category": "Vulnerability", + "description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "arbitrary-file-write vulnerability", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1271", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:4940", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2073310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-4940.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:4940", + }, + { + "type": "URL", + "value": "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1271.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5052.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-01", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220930-0006/", + }, + { + "type": "URL", + "value": "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-4", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/04/07/8", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.7-1", + "packageName": "iptables", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3374", + "installedVersion": "2.2.4", + "packageName": "libapt-pkg6.0", + "references": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374", + ], + }, + "category": "Vulnerability", + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + }, + { + "type": "URL", + "value": "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + }, + { + "type": "URL", + "value": "https://seclists.org/fulldisclosure/2011/Sep/221", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2011-3374", + }, + { + "type": "URL", + "value": "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2011-3374", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.31-13+deb11u4", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3999", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3999", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3999.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9234.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221104-0001/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/01/24/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-4756", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756", + ], + }, + "category": "Vulnerability", + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-4756", + }, + { + "type": "URL", + "value": "http://cxib.net/stuff/glob-0day.c", + }, + { + "type": "URL", + "value": "http://securityreason.com/achievement_securityalert/89", + }, + { + "type": "URL", + "value": "http://securityreason.com/exploitalert/9223", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-4756", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-20796", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796", + ], + }, + "category": "Vulnerability", + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-20796", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/107160", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190315-0002/", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-20796", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010022", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: stack guard protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010022", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010023", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010023", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109167", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010024", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: ASLR bypass using cache of thread stack and heap", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010024", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109162", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010025", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is "ASLR bypass itself is not a vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: information disclosure of heap addresses of pthread_created thread", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010025", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-9192", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-9192", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-9192", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.31-13+deb11u4", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3999", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3999", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3999.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9234.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221104-0001/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/01/24/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-4756", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756", + ], + }, + "category": "Vulnerability", + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-4756", + }, + { + "type": "URL", + "value": "http://cxib.net/stuff/glob-0day.c", + }, + { + "type": "URL", + "value": "http://securityreason.com/achievement_securityalert/89", + }, + { + "type": "URL", + "value": "http://securityreason.com/exploitalert/9223", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-4756", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-20796", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796", + ], + }, + "category": "Vulnerability", + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-20796", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/107160", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190315-0002/", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-20796", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010022", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: stack guard protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010022", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010023", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010023", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109167", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010024", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: ASLR bypass using cache of thread stack and heap", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010024", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109162", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010025", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is "ASLR bypass itself is not a vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: information disclosure of heap addresses of pthread_created thread", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010025", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-9192", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-9192", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-9192", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1304", + "installedVersion": "1.46.2-2", + "packageName": "libcom-err2", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8361", + "https://access.redhat.com/security/cve/CVE-2022-1304", + "https://bugzilla.redhat.com/2069726", + "https://bugzilla.redhat.com/show_bug.cgi?id=2069726", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1304", + "https://errata.almalinux.org/9/ALSA-2022-8361.html", + "https://errata.rockylinux.org/RLSA-2022:8361", + "https://linux.oracle.com/cve/CVE-2022-1304.html", + "https://linux.oracle.com/errata/ELSA-2022-8361.html", + "https://marc.info/?l=linux-ext4&m=165056234501732&w=2", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1304", + "https://ubuntu.com/security/notices/USN-5464-1", + "https://www.cve.org/CVERecord?id=CVE-2022-1304", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "e2fsprogs: out-of-bounds read/write via crafted filesystem", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1304", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8361", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1304", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2069726", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2069726", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1304", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8361.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8361", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1304.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8361.html", + }, + { + "type": "URL", + "value": "https://marc.info/?l=linux-ext4&m=165056234501732&w=2", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1304", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5464-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1304", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-8457", + "installedVersion": "5.3.28+dfsg1-0.8", + "packageName": "libdb5.3", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + "https://access.redhat.com/security/cve/CVE-2019-8457", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + "https://linux.oracle.com/cve/CVE-2019-8457.html", + "https://linux.oracle.com/errata/ELSA-2020-1810.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + "https://security.netapp.com/advisory/ntap-20190606-0002/", + "https://ubuntu.com/security/notices/USN-4004-1", + "https://ubuntu.com/security/notices/USN-4004-2", + "https://ubuntu.com/security/notices/USN-4019-1", + "https://ubuntu.com/security/notices/USN-4019-2", + "https://usn.ubuntu.com/4004-1/", + "https://usn.ubuntu.com/4004-2/", + "https://usn.ubuntu.com/4019-1/", + "https://usn.ubuntu.com/4019-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-8457", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.sqlite.org/releaselog/3_28_0.html", + "https://www.sqlite.org/src/info/90acdbfce9c08858", + ], + }, + "category": "Vulnerability", + "description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "sqlite: heap out-of-bound read in function rtreenode()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-8457", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-8457.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1810.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190606-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4004-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4004-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4019-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4019-2", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4004-1/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4004-2/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4019-1/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4019-2/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2020.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2020.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2020.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + }, + { + "type": "URL", + "value": "https://www.sqlite.org/releaselog/3_28_0.html", + }, + { + "type": "URL", + "value": "https://www.sqlite.org/src/info/90acdbfce9c08858", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-33560", + "installedVersion": "1.8.7-6", + "packageName": "libgcrypt20", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + "https://access.redhat.com/security/cve/CVE-2021-33560", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + "https://dev.gnupg.org/T5305", + "https://dev.gnupg.org/T5328", + "https://dev.gnupg.org/T5466", + "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2021-4409.html", + "https://linux.oracle.com/cve/CVE-2021-33560.html", + "https://linux.oracle.com/errata/ELSA-2022-9263.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33560", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + ], + }, + "category": "Vulnerability", + "description": "Libgcrypt before 1.8.8 and 1.9.x before 1.9.3 mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm, and the window size is not chosen appropriately. This, for example, affects use of ElGamal in OpenPGP.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libgcrypt: mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33560", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5305", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5328", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5466", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + }, + { + "type": "URL", + "value": "https://eprint.iacr.org/2021/923", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4409.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-33560.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9263.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-13", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5080-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5080-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-6829", + "installedVersion": "1.8.7-6", + "packageName": "libgcrypt20", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-6829", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + "https://www.cve.org/CVERecord?id=CVE-2018-6829", + "https://www.oracle.com/security-alerts/cpujan2020.html", + ], + }, + "category": "Vulnerability", + "description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libgcrypt: ElGamal implementation doesn't have semantic security due to incorrectly encoded plaintexts possibly allowing to obtain sensitive information", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-6829", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-6829", + }, + { + "type": "URL", + "value": "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + }, + { + "type": "URL", + "value": "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + }, + { + "type": "URL", + "value": "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-6829", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2020.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "3.7.1-5+deb11u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2509", + "installedVersion": "3.7.1-5", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6854", + "https://access.redhat.com/security/cve/CVE-2022-2509", + "https://bugzilla.redhat.com/2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2076626", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108635", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2119770", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2509", + "https://errata.almalinux.org/9/ALSA-2022-6854.html", + "https://errata.rockylinux.org/RLSA-2022:6854", + "https://gnutls.org/security-new.html (GNUTLS-SA-2022-07-07)", + "https://gnutls.org/security-new.html#GNUTLS-SA-2022-07-07", + "https://linux.oracle.com/cve/CVE-2022-2509.html", + "https://linux.oracle.com/errata/ELSA-2022-7105.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00002.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6FL27JS3VM74YEQU7PGB62USO3KSBYZX/", + "https://lists.gnupg.org/pipermail/gnutls-help/2022-July/004746.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2509", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2509", + "https://www.debian.org/security/2022/dsa-5203", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability found in gnutls. This security flaw happens because of a double free error occurs during verification of pkcs7 signatures in gnutls_pkcs7_verify function.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Double free during gnutls_pkcs7_verify", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2509", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6854", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2108977", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2076626", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2108635", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2108977", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2119770", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6854.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:6854", + }, + { + "type": "URL", + "value": "https://gnutls.org/security-new.html (GNUTLS-SA-2022-07-07)", + }, + { + "type": "URL", + "value": "https://gnutls.org/security-new.html#GNUTLS-SA-2022-07-07", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2509.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-7105.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/08/msg00002.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6FL27JS3VM74YEQU7PGB62USO3KSBYZX/", + }, + { + "type": "URL", + "value": "https://lists.gnupg.org/pipermail/gnutls-help/2022-July/004746.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5550-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5203", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.7.1-5+deb11u3", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0361", + "installedVersion": "3.7.1-5", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:1141", + "https://access.redhat.com/security/cve/CVE-2023-0361", + "https://bugzilla.redhat.com/2162596", + "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + "https://errata.almalinux.org/9/ALSA-2023-1141.html", + "https://errata.rockylinux.org/RLSA-2023:1569", + "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + "https://gitlab.com/gnutls/gnutls/-/issues/1050", + "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + "https://linux.oracle.com/cve/CVE-2023-0361.html", + "https://linux.oracle.com/errata/ELSA-2023-1569.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + "https://security.netapp.com/advisory/ntap-20230324-0005/", + "https://ubuntu.com/security/notices/USN-5901-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0361", + ], + }, + "category": "Vulnerability", + "description": "A timing side-channel in the handling of RSA ClientKeyExchange messages was discovered in GnuTLS. This side-channel can be sufficient to recover the key encrypted in the RSA ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption the attacker would need to send a large amount of specially crafted messages to the vulnerable server. By recovering the secret from the ClientKeyExchange message, the attacker would be able to decrypt the application data exchanged over that connection.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "timing side-channel in the TLS RSA key exchange code", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0361", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:1141", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0361", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2162596", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-1141.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:1569", + }, + { + "type": "URL", + "value": "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1050", + }, + { + "type": "URL", + "value": "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0361.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-1569.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230324-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5901-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0361", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.7.1-5+deb11u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-4209", + "installedVersion": "3.7.1-5", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-4209", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044156", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-4209", + "https://gitlab.com/gnutls/gnutls/-/commit/3db352734472d851318944db13be73da61300568", + "https://gitlab.com/gnutls/gnutls/-/issues/1306", + "https://gitlab.com/gnutls/gnutls/-/merge_requests/1503", + "https://nvd.nist.gov/vuln/detail/CVE-2021-4209", + "https://security.netapp.com/advisory/ntap-20220915-0005/", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://ubuntu.com/security/notices/USN-5750-1", + "https://www.cve.org/CVERecord?id=CVE-2021-4209", + ], + }, + "category": "Vulnerability", + "description": "A NULL pointer dereference flaw was found in GnuTLS. As Nettle's hash update functions internally call memcpy, providing zero-length input may cause undefined behavior. This flaw leads to a denial of service after authentication in rare circumstances.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "GnuTLS: Null pointer dereference in MD_UPDATE", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-4209", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-4209", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2044156", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-4209", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/commit/3db352734472d851318944db13be73da61300568", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1306", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/merge_requests/1503", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-4209", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220915-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5550-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5750-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-4209", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3389", + "installedVersion": "3.7.1-5", + "packageName": "libgnutls30", + "references": [ + "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + "http://curl.haxx.se/docs/adv_20120124B.html", + "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + "http://ekoparty.org/2011/juliano-rizzo.php", + "http://eprint.iacr.org/2004/111", + "http://eprint.iacr.org/2006/136", + "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + "http://marc.info/?l=bugtraq&m=132750579901589&w=2", + "http://marc.info/?l=bugtraq&m=132872385320240&w=2", + "http://marc.info/?l=bugtraq&m=133365109612558&w=2", + "http://marc.info/?l=bugtraq&m=133728004526190&w=2", + "http://marc.info/?l=bugtraq&m=134254866602253&w=2", + "http://marc.info/?l=bugtraq&m=134254957702612&w=2", + "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + "http://osvdb.org/74829", + "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + "http://secunia.com/advisories/45791", + "http://secunia.com/advisories/47998", + "http://secunia.com/advisories/48256", + "http://secunia.com/advisories/48692", + "http://secunia.com/advisories/48915", + "http://secunia.com/advisories/48948", + "http://secunia.com/advisories/49198", + "http://secunia.com/advisories/55322", + "http://secunia.com/advisories/55350", + "http://secunia.com/advisories/55351", + "http://security.gentoo.org/glsa/glsa-201203-02.xml", + "http://security.gentoo.org/glsa/glsa-201406-32.xml", + "http://support.apple.com/kb/HT4999", + "http://support.apple.com/kb/HT5001", + "http://support.apple.com/kb/HT5130", + "http://support.apple.com/kb/HT5281", + "http://support.apple.com/kb/HT5501", + "http://support.apple.com/kb/HT6150", + "http://technet.microsoft.com/security/advisory/2588513", + "http://vnhacker.blogspot.com/2011/09/beast.html", + "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + "http://www.debian.org/security/2012/dsa-2398", + "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + "http://www.ibm.com/developerworks/java/jdk/alerts/", + "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + "http://www.insecure.cl/Beast-SSL.rar", + "http://www.kb.cert.org/vuls/id/864643", + "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + "http://www.opera.com/docs/changelogs/mac/1151/", + "http://www.opera.com/docs/changelogs/mac/1160/", + "http://www.opera.com/docs/changelogs/unix/1151/", + "http://www.opera.com/docs/changelogs/unix/1160/", + "http://www.opera.com/docs/changelogs/windows/1151/", + "http://www.opera.com/docs/changelogs/windows/1160/", + "http://www.opera.com/support/kb/view/1004/", + "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + "http://www.securityfocus.com/bid/49388", + "http://www.securityfocus.com/bid/49778", + "http://www.securitytracker.com/id/1029190", + "http://www.securitytracker.com/id?1025997", + "http://www.securitytracker.com/id?1026103", + "http://www.securitytracker.com/id?1026704", + "http://www.ubuntu.com/usn/USN-1263-1", + "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + "https://access.redhat.com/security/cve/CVE-2011-3389", + "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + "https://bugzilla.novell.com/show_bug.cgi?id=719047", + "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + "https://hermes.opensuse.org/messages/13154861", + "https://hermes.opensuse.org/messages/13155432", + "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + "https://linux.oracle.com/cve/CVE-2011-3389.html", + "https://linux.oracle.com/errata/ELSA-2011-1380.html", + "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + "https://ubuntu.com/security/notices/USN-1263-1", + "https://www.cve.org/CVERecord?id=CVE-2011-3389", + ], + }, + "category": "Vulnerability", + "description": "The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a "BEAST" attack.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3389", + }, + { + "type": "URL", + "value": "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + }, + { + "type": "URL", + "value": "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + }, + { + "type": "URL", + "value": "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + }, + { + "type": "URL", + "value": "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + }, + { + "type": "URL", + "value": "http://curl.haxx.se/docs/adv_20120124B.html", + }, + { + "type": "URL", + "value": "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + }, + { + "type": "URL", + "value": "http://ekoparty.org/2011/juliano-rizzo.php", + }, + { + "type": "URL", + "value": "http://eprint.iacr.org/2004/111", + }, + { + "type": "URL", + "value": "http://eprint.iacr.org/2006/136", + }, + { + "type": "URL", + "value": "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + }, + { + "type": "URL", + "value": "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=132750579901589&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=132872385320240&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=133365109612558&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=133728004526190&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=134254866602253&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=134254957702612&w=2", + }, + { + "type": "URL", + "value": "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + }, + { + "type": "URL", + "value": "http://osvdb.org/74829", + }, + { + "type": "URL", + "value": "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + }, + { + "type": "URL", + "value": "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/45791", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/47998", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48256", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48692", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48915", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48948", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/49198", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/55322", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/55350", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/55351", + }, + { + "type": "URL", + "value": "http://security.gentoo.org/glsa/glsa-201203-02.xml", + }, + { + "type": "URL", + "value": "http://security.gentoo.org/glsa/glsa-201406-32.xml", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT4999", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5001", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5130", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5281", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5501", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT6150", + }, + { + "type": "URL", + "value": "http://technet.microsoft.com/security/advisory/2588513", + }, + { + "type": "URL", + "value": "http://vnhacker.blogspot.com/2011/09/beast.html", + }, + { + "type": "URL", + "value": "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + }, + { + "type": "URL", + "value": "http://www.debian.org/security/2012/dsa-2398", + }, + { + "type": "URL", + "value": "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + }, + { + "type": "URL", + "value": "http://www.ibm.com/developerworks/java/jdk/alerts/", + }, + { + "type": "URL", + "value": "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + }, + { + "type": "URL", + "value": "http://www.insecure.cl/Beast-SSL.rar", + }, + { + "type": "URL", + "value": "http://www.kb.cert.org/vuls/id/864643", + }, + { + "type": "URL", + "value": "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/mac/1151/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/mac/1160/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/unix/1151/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/unix/1160/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/windows/1151/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/windows/1160/", + }, + { + "type": "URL", + "value": "http://www.opera.com/support/kb/view/1004/", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + }, + { + "type": "URL", + "value": "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + }, + { + "type": "URL", + "value": "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/49388", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/49778", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id/1029190", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id?1025997", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id?1026103", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id?1026704", + }, + { + "type": "URL", + "value": "http://www.ubuntu.com/usn/USN-1263-1", + }, + { + "type": "URL", + "value": "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2011-3389", + }, + { + "type": "URL", + "value": "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + }, + { + "type": "URL", + "value": "https://bugzilla.novell.com/show_bug.cgi?id=719047", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + }, + { + "type": "URL", + "value": "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + }, + { + "type": "URL", + "value": "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + }, + { + "type": "URL", + "value": "https://hermes.opensuse.org/messages/13154861", + }, + { + "type": "URL", + "value": "https://hermes.opensuse.org/messages/13155432", + }, + { + "type": "URL", + "value": "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2011-3389.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2011-1380.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + }, + { + "type": "URL", + "value": "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-1263-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2011-3389", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libgssapi-krb5-2", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libgssapi-krb5-2", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.7-1", + "packageName": "libip4tc2", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.7-1", + "packageName": "libip6tc2", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libk5crypto3", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libk5crypto3", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5-3", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5-3", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5support0", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5support0", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "5.2.5-2.1~deb11u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1271", + "installedVersion": "5.2.5-2", + "packageName": "liblzma5", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8", + ], + }, + "category": "Vulnerability", + "description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "arbitrary-file-write vulnerability", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1271", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:4940", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2073310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-4940.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:4940", + }, + { + "type": "URL", + "value": "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1271.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5052.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-01", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220930-0006/", + }, + { + "type": "URL", + "value": "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-4", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/04/07/8", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "10.36-2+deb11u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1586", + "installedVersion": "10.36-2", + "packageName": "libpcre2-8-0", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:5809", + "https://access.redhat.com/security/cve/CVE-2022-1586", + "https://bugzilla.redhat.com/2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1586", + "https://errata.almalinux.org/8/ALSA-2022-5809.html", + "https://errata.rockylinux.org/RLSA-2022:5809", + "https://github.com/PCRE2Project/pcre2/commit/50a51cb7e67268e6ad417eb07c9de9bfea5cc55a,", + "https://github.com/PCRE2Project/pcre2/commit/d4fa336fbcc388f89095b184ba6d99422cfc676c", + "https://linux.oracle.com/cve/CVE-2022-1586.html", + "https://linux.oracle.com/errata/ELSA-2022-5809.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1586", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1586", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "pcre2: Out-of-bounds read in compile_xclass_matchingpath in pcre2_jit_compile.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1586", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:5809", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1586", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2077976", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077976", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077976,", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1586", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2022-5809.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5809", + }, + { + "type": "URL", + "value": "https://github.com/PCRE2Project/pcre2/commit/50a51cb7e67268e6ad417eb07c9de9bfea5cc55a,", + }, + { + "type": "URL", + "value": "https://github.com/PCRE2Project/pcre2/commit/d4fa336fbcc388f89095b184ba6d99422cfc676c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1586.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5809.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1586", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221028-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1586", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "10.36-2+deb11u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1587", + "installedVersion": "10.36-2", + "packageName": "libpcre2-8-0", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-1587", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077983,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1587", + "https://github.com/PCRE2Project/pcre2/commit/03654e751e7f0700693526b67dfcadda6b42c9d0", + "https://linux.oracle.com/cve/CVE-2022-1587.html", + "https://linux.oracle.com/errata/ELSA-2022-5251.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1587", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1587", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "pcre2: Out-of-bounds read in get_recurse_data_length in pcre2_jit_compile.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1587", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1587", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077983,", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1587", + }, + { + "type": "URL", + "value": "https://github.com/PCRE2Project/pcre2/commit/03654e751e7f0700693526b67dfcadda6b42c9d0", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1587.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5251.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1587", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221028-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1587", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-11164", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://openwall.com/lists/oss-security/2017/07/11/3", + "http://www.openwall.com/lists/oss-security/2023/04/11/1", + "http://www.openwall.com/lists/oss-security/2023/04/12/1", + "http://www.securityfocus.com/bid/99575", + "https://access.redhat.com/security/cve/CVE-2017-11164", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + "https://www.cve.org/CVERecord?id=CVE-2017-11164", + ], + }, + "category": "Vulnerability", + "description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-11164", + }, + { + "type": "URL", + "value": "http://openwall.com/lists/oss-security/2017/07/11/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/11/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/12/1", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/99575", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-11164", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-16231", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + "http://seclists.org/fulldisclosure/2018/Dec/33", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101688", + "https://access.redhat.com/security/cve/CVE-2017-16231", + "https://bugs.exim.org/show_bug.cgi?id=2047", + "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + "https://www.cve.org/CVERecord?id=CVE-2017-16231", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-16231", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2018/Dec/33", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/11", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/7", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/8", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/101688", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-16231", + }, + { + "type": "URL", + "value": "https://bugs.exim.org/show_bug.cgi?id=2047", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-16231", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-7245", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7245", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7245", + ], + }, + "category": "Vulnerability", + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-7245", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/97067", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2018:2486", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-7245", + }, + { + "type": "URL", + "value": "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201710-25", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-7245", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-7246", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7246", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7246", + ], + }, + "category": "Vulnerability", + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-7246", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/97067", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2018:2486", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-7246", + }, + { + "type": "URL", + "value": "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201710-25", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-7246", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-20838", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://access.redhat.com/security/cve/CVE-2019-20838", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2019-20838.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2019-20838", + "https://www.pcre.org/original/changelog.txt", + ], + }, + "category": "Vulnerability", + "description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "pcre: Buffer over-read in JIT when UTF is disabled and \\X or \\R has fixed quantifier greater than 1", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-20838", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2020/Dec/32", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/Feb/14", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/717920", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4373", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-20838.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT211931", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212147", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5425-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://www.pcre.org/original/changelog.txt", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36084", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36084", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + "https://linux.oracle.com/cve/CVE-2021-36084.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36084", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libsepol: use-after-free in __cil_verify_classperms()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36084", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36084.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36084", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36085", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36085", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + "https://linux.oracle.com/cve/CVE-2021-36085.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36085", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libsepol: use-after-free in __cil_verify_classperms()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36085", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36085.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36085", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36086", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36086", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + "https://linux.oracle.com/cve/CVE-2021-36086.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36086", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "use-after-free in cil_reset_classpermission()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36086", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36086.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36086", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36087", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36087", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + "https://linux.oracle.com/cve/CVE-2021-36087.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36087", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libsepol: heap-based buffer overflow in ebitmap_match_any()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36087", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36087.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36087", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1292", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-1292", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-953464.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1ad73b4d27bd8c1b369a3cd453681d3a4f1bb9b2", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=548d3f280a6e737673f5b61fce24bb100108dfeb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e5fd1728ef4c7a5bf7c7a7163ca60370460a6e23", + "https://linux.oracle.com/cve/CVE-2022-1292.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VX4KWHPMKYJL6ZLW4M5IU7E5UV5ZWJQU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNU5M7BXMML26G3GPYKFGQYPQDRSNKDD/", + "https://mta.openssl.org/pipermail/openssl-announce/2022-May/000224.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1292", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0011", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220602-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://ubuntu.com/security/notices/USN-5402-1", + "https://ubuntu.com/security/notices/USN-5402-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1292", + "https://www.debian.org/security/2022/dsa-5139", + "https://www.openssl.org/news/secadv/20220503.txt", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "The c_rehash script does not properly sanitise shell metacharacters to prevent command injection. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.3 (Affected 3.0.0,3.0.1,3.0.2). Fixed in OpenSSL 1.1.1o (Affected 1.1.1-1.1.1n). Fixed in OpenSSL 1.0.2ze (Affected 1.0.2-1.0.2zd).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "c_rehash script allows command injection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1292", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-953464.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1ad73b4d27bd8c1b369a3cd453681d3a4f1bb9b2", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=548d3f280a6e737673f5b61fce24bb100108dfeb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e5fd1728ef4c7a5bf7c7a7163ca60370460a6e23", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1292.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/05/msg00019.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VX4KWHPMKYJL6ZLW4M5IU7E5UV5ZWJQU/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNU5M7BXMML26G3GPYKFGQYPQDRSNKDD/", + }, + { + "type": "URL", + "value": "https://mta.openssl.org/pipermail/openssl-announce/2022-May/000224.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0011", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220602-0009/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5402-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5402-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5139", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220503.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u3", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2068", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2068", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c9c35870601b4a44d86ddbf512b38df38285cfa", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7a9c027159fe9e1bbc2cd38a8a2914bff0d5abd9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9639817dac8bbbaa64d09efad7464ccc405527c7", + "https://linux.oracle.com/cve/CVE-2022-2068.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6WZZBKUHQFGSKGNXXKICSRPL7AMVW5M5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2068", + "https://security.netapp.com/advisory/ntap-20220707-0008/", + "https://ubuntu.com/security/notices/USN-5488-1", + "https://ubuntu.com/security/notices/USN-5488-2", + "https://www.cve.org/CVERecord?id=CVE-2022-2068", + "https://www.debian.org/security/2022/dsa-5169", + "https://www.openssl.org/news/secadv/20220621.txt", + ], + }, + "category": "Vulnerability", + "description": "In addition to the c_rehash shell command injection identified in CVE-2022-1292, further circumstances where the c_rehash script does not properly sanitise shell metacharacters to prevent command injection were found by code review. When the CVE-2022-1292 was fixed it was not discovered that there are other places in the script where the file names of certificates being hashed were possibly passed to a command executed through the shell. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.4 (Affected 3.0.0,3.0.1,3.0.2,3.0.3). Fixed in OpenSSL 1.1.1p (Affected 1.1.1-1.1.1o). Fixed in OpenSSL 1.0.2zf (Affected 1.0.2-1.0.2ze).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "the c_rehash script allows command injection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2068", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c9c35870601b4a44d86ddbf512b38df38285cfa", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7a9c027159fe9e1bbc2cd38a8a2914bff0d5abd9", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9639817dac8bbbaa64d09efad7464ccc405527c7", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2068.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6WZZBKUHQFGSKGNXXKICSRPL7AMVW5M5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220707-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5488-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5488-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5169", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220621.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4450", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (e.g. "CERTIFICATE"), any header data and the payload data. If the function succeeds then the "name_out", "header" and "data" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "double free after calling PEM_read_bio_ex", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4450", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4450.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0215", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The public API function BIO_new_NDEF is a helper function used for streaming +ASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the +SMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by +end user applications. + +The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter +BIO onto the front of it to form a BIO chain, and then returns the new head of +the BIO chain to the caller. Under certain conditions, for example if a CMS +recipient public key is invalid, the new filter BIO is freed and the function +returns a NULL result indicating a failure. However, in this case, the BIO chain +is not properly cleaned up and the BIO passed by the caller still retains +internal pointers to the previously freed filter BIO. If the caller then goes on +to call BIO_pop() on the BIO then a use-after-free will occur. This will most +likely result in a crash. + + + +This scenario occurs directly in the internal function B64_write_ASN1() which +may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on +the BIO. This internal function is in turn called by the public API functions +PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, +SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. + +Other public API functions that may be impacted by this include +i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and +i2d_PKCS7_bio_stream. + +The OpenSSL cms and smime command line applications are similarly affected. + + + +", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "use-after-free following BIO_new_NDEF", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0215", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0215.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0007/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0286", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "X.400 address type confusion in X.509 GeneralName", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0286.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0464", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt", + ], + }, + "category": "Vulnerability", + "description": "A security vulnerability has been identified in all supported versions + +of OpenSSL related to the verification of X.509 certificate chains +that include policy constraints. Attackers may be able to exploit this +vulnerability by creating a malicious certificate chain that triggers +exponential use of computational resources, leading to a denial-of-service +(DoS) attack on affected systems. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0464", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230322.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-2650", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2097", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt", + ], + }, + "category": "Vulnerability", + "description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "AES OCB fails to encrypt some bytes", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2097", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2097.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220715-0011/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230420-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5502-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5343", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220705.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4304", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "timing attack in RSA Decryption implementation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4304", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4304.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0465", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "Applications that use a non-default option when verifying certificates may be +vulnerable to an attack from a malicious CA to circumvent certain checks. + +Invalid certificate policies in leaf certificates are silently ignored by +OpenSSL and other certificate policy checks are skipped for that certificate. +A malicious CA could use this to deliberately assert invalid certificate policies +in order to circumvent policy checking on the certificate altogether. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Invalid certificate policies in leaf certificates are silently ignored", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0465", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0466", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "The function X509_VERIFY_PARAM_add0_policy() is documented to +implicitly enable the certificate policy check when doing certificate +verification. However the implementation of the function does not +enable the check which allows certificates with invalid or incorrect +policies to pass the certificate verification. + +As suddenly enabling the policy check could break existing deployments it was +decided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy() +function. + +Instead the applications that require OpenSSL to perform certificate +policy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly +enable the policy check by calling X509_VERIFY_PARAM_set_flags() with +the X509_V_FLAG_POLICY_CHECK flag argument. + +Certificate policy checks are disabled by default in OpenSSL and are not +commonly used by applications.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Certificate policy check not enabled", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0466", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-6755", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + ], + }, + "category": "Vulnerability", + "description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain "skeleton key" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Dual_EC_DRBG: weak pseudo random number generator", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-6755", + }, + { + "type": "URL", + "value": "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + }, + { + "type": "URL", + "value": "http://rump2007.cr.yp.to/15-shumow.pdf", + }, + { + "type": "URL", + "value": "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + }, + { + "type": "URL", + "value": "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/63657", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-0928", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928", + ], + }, + "category": "Vulnerability", + "description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a "fault-based attack."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "openssl: RSA authentication weakness", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-0928", + }, + { + "type": "URL", + "value": "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + }, + { + "type": "URL", + "value": "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + }, + { + "type": "URL", + "value": "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + }, + { + "type": "URL", + "value": "http://www.osvdb.org/62808", + }, + { + "type": "URL", + "value": "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-0928", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3821", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821", + ], + }, + "category": "Vulnerability", + "description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "buffer overrun in format_timespan() function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3821", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0336", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2139327", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0336", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/23928", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/23933", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3821.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3821", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4415", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4415", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0954", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2155515", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0954", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4415.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/12/21/3", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4392", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392", + ], + }, + "category": "Vulnerability", + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4392", + }, + { + "type": "URL", + "value": "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2013/10/01/9", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4392", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-13529", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529", + ], + }, + "category": "Vulnerability", + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-13529", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-13529.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4361.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210625-0005/", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-13529", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "4.16.0-2+deb11u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-46848", + "installedVersion": "4.16.0-2", + "packageName": "libtasn1-6", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0343", + "https://access.redhat.com/security/cve/CVE-2021-46848", + "https://bugs.gentoo.org/866237", + "https://bugzilla.redhat.com/2140058", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + "https://errata.almalinux.org/9/ALSA-2023-0343.html", + "https://errata.rockylinux.org/RLSA-2023:0343", + "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + "https://gitlab.com/gnutls/libtasn1/-/issues/32", + "https://linux.oracle.com/cve/CVE-2021-46848.html", + "https://linux.oracle.com/errata/ELSA-2023-0343.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + "https://security.netapp.com/advisory/ntap-20221118-0006/", + "https://ubuntu.com/security/notices/USN-5707-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46848", + ], + }, + "category": "Vulnerability", + "description": "GNU Libtasn1 before 4.19.0 has an ETYPE_OK off-by-one array size check that affects asn1_encode_simple_der.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libtasn1: Out-of-bound access in ETYPE_OK", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-46848", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0343", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/866237", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140058", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0343.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0343", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/-/issues/32", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-46848.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0343.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221118-0006/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5707-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-46848", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.3.1-1+deb11u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-46828", + "installedVersion": "1.3.1-1", + "packageName": "libtirpc-common", + "references": [ + "http://git.linux-nfs.org/?p=steved/libtirpc.git;a=commit;h=86529758570cef4c73fb9b9c4104fdc510f701ed", + "https://access.redhat.com/errata/RHSA-2022:8400", + "https://access.redhat.com/security/cve/CVE-2021-46828", + "https://bugzilla.redhat.com/2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118157", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46828", + "https://errata.almalinux.org/9/ALSA-2022-8400.html", + "https://errata.rockylinux.org/RLSA-2022:8400", + "https://linux.oracle.com/cve/CVE-2021-46828.html", + "https://linux.oracle.com/errata/ELSA-2022-8400.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00004.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46828", + "https://security.gentoo.org/glsa/202210-33", + "https://security.netapp.com/advisory/ntap-20221007-0004/", + "https://ubuntu.com/security/notices/USN-5538-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46828", + "https://www.debian.org/security/2022/dsa-5200", + ], + }, + "category": "Vulnerability", + "description": "In libtirpc before 1.3.3rc1, remote attackers could exhaust the file descriptors of a process that uses libtirpc because idle TCP connections are mishandled. This can, in turn, lead to an svc_run infinite loop without accepting new connections.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libtirpc: DoS vulnerability with lots of connections", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-46828", + }, + { + "type": "URL", + "value": "http://git.linux-nfs.org/?p=steved/libtirpc.git;a=commit;h=86529758570cef4c73fb9b9c4104fdc510f701ed", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8400", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2109352", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2109352", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2118157", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8400.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8400", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-46828.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8400.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/08/msg00004.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-33", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221007-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5538-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5200", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.3.1-1+deb11u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-46828", + "installedVersion": "1.3.1-1", + "packageName": "libtirpc3", + "references": [ + "http://git.linux-nfs.org/?p=steved/libtirpc.git;a=commit;h=86529758570cef4c73fb9b9c4104fdc510f701ed", + "https://access.redhat.com/errata/RHSA-2022:8400", + "https://access.redhat.com/security/cve/CVE-2021-46828", + "https://bugzilla.redhat.com/2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118157", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46828", + "https://errata.almalinux.org/9/ALSA-2022-8400.html", + "https://errata.rockylinux.org/RLSA-2022:8400", + "https://linux.oracle.com/cve/CVE-2021-46828.html", + "https://linux.oracle.com/errata/ELSA-2022-8400.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00004.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46828", + "https://security.gentoo.org/glsa/202210-33", + "https://security.netapp.com/advisory/ntap-20221007-0004/", + "https://ubuntu.com/security/notices/USN-5538-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46828", + "https://www.debian.org/security/2022/dsa-5200", + ], + }, + "category": "Vulnerability", + "description": "In libtirpc before 1.3.3rc1, remote attackers could exhaust the file descriptors of a process that uses libtirpc because idle TCP connections are mishandled. This can, in turn, lead to an svc_run infinite loop without accepting new connections.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libtirpc: DoS vulnerability with lots of connections", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-46828", + }, + { + "type": "URL", + "value": "http://git.linux-nfs.org/?p=steved/libtirpc.git;a=commit;h=86529758570cef4c73fb9b9c4104fdc510f701ed", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8400", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2109352", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2109352", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2118157", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8400.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8400", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-46828.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8400.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/08/msg00004.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-33", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221007-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5538-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5200", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3821", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821", + ], + }, + "category": "Vulnerability", + "description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "buffer overrun in format_timespan() function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3821", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0336", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2139327", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0336", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/23928", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/23933", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3821.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3821", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4415", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4415", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0954", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2155515", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0954", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4415.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/12/21/3", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4392", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392", + ], + }, + "category": "Vulnerability", + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4392", + }, + { + "type": "URL", + "value": "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2013/10/01/9", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4392", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-13529", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529", + ], + }, + "category": "Vulnerability", + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-13529", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-13529.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4361.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210625-0005/", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-13529", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.7-1", + "packageName": "libxtables12", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4899", + "installedVersion": "1.4.8+dfsg-2.1", + "packageName": "libzstd1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-4899", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4899", + "https://github.com/facebook/zstd/issues/3200", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4899", + "https://www.cve.org/CVERecord?id=CVE-2022-4899", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in zstd v1.4.10, where an attacker can supply empty string as an argument to the command line tool to cause buffer overrun.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "buffer overrun in util.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4899", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4899", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4899", + }, + { + "type": "URL", + "value": "https://github.com/facebook/zstd/issues/3200", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4899", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4899", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-5686", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825", + ], + }, + "category": "Vulnerability", + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-5686", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/27215", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/26048", + }, + { + "type": "URL", + "value": "http://www.vupen.com/english/advisories/2007/3474", + }, + { + "type": "URL", + "value": "https://issues.rpath.com/browse/RPL-1825", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4235", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235", + ], + }, + "category": "Vulnerability", + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/issues/317", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/545", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-26", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4235", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19882", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882", + ], + }, + "category": "Vulnerability", + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19882", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://bugs.archlinux.org/task/64836", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/702252", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/199", + }, + { + "type": "URL", + "value": "https://github.com/void-linux/void-packages/pull/17580", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202008-09", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19882", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29383", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + ], + }, + "category": "Vulnerability", + "description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that "cat /etc/passwd" shows a rogue user account.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Improper input validation in shadow-utils package utility chfn", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/687", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-5686", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825", + ], + }, + "category": "Vulnerability", + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-5686", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/27215", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/26048", + }, + { + "type": "URL", + "value": "http://www.vupen.com/english/advisories/2007/3474", + }, + { + "type": "URL", + "value": "https://issues.rpath.com/browse/RPL-1825", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4235", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235", + ], + }, + "category": "Vulnerability", + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/issues/317", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/545", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-26", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4235", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19882", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882", + ], + }, + "category": "Vulnerability", + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19882", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://bugs.archlinux.org/task/64836", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/702252", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/199", + }, + { + "type": "URL", + "value": "https://github.com/void-linux/void-packages/pull/17580", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202008-09", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19882", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29383", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + ], + }, + "category": "Vulnerability", + "description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that "cat /etc/passwd" shows a rogue user account.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Improper input validation in shadow-utils package utility chfn", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/687", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-16156", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + "https://access.redhat.com/security/cve/CVE-2020-16156", + "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + "https://ubuntu.com/security/notices/USN-5689-1", + "https://ubuntu.com/security/notices/USN-5689-2", + "https://www.cve.org/CVERecord?id=CVE-2020-16156", + ], + }, + "category": "Vulnerability", + "description": "CPAN 2.28 allows Signature Verification Bypass.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "perl-CPAN: Bypass of verification of signatures in CHECKSUMS files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-16156", + }, + { + "type": "URL", + "value": "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + }, + { + "type": "URL", + "value": "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5689-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5689-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-16156", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31484", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + "https://github.com/andk/cpanpm/pull/175", + "https://metacpan.org/dist/CPAN/changes", + "https://ubuntu.com/security/notices/USN-6112-1", + "https://ubuntu.com/security/notices/USN-6112-2", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + ], + }, + "category": "Vulnerability", + "description": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "CPAN.pm before 2.35 does not verify TLS certificates when downloading ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31484", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/29/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/5", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/07/2", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + }, + { + "type": "URL", + "value": "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + }, + { + "type": "URL", + "value": "https://github.com/andk/cpanpm/pull/175", + }, + { + "type": "URL", + "value": "https://metacpan.org/dist/CPAN/changes", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6112-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6112-2", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/18/14", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-4116", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2011/11/04/2", + "http://www.openwall.com/lists/oss-security/2011/11/04/4", + "https://access.redhat.com/security/cve/CVE-2011-4116", + "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + "https://seclists.org/oss-sec/2011/q4/238", + "https://www.cve.org/CVERecord?id=CVE-2011-4116", + ], + }, + "category": "Vulnerability", + "description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "perl: File::Temp insecure temporary file handling", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-4116", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2011/11/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2011/11/04/4", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2011-4116", + }, + { + "type": "URL", + "value": "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + }, + { + "type": "URL", + "value": "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + }, + { + "type": "URL", + "value": "https://seclists.org/oss-sec/2011/q4/238", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2011-4116", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31486", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://hackeriet.github.io/cpan-http-tiny-overview/", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + "https://www.openwall.com/lists/oss-security/2023/05/03/4", + "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/", + ], + }, + "category": "Vulnerability", + "description": "HTTP::Tiny 0.082, a Perl core module since 5.13.9 and available standalone on CPAN, has an insecure default TLS configuration where users must opt in to verify certificates.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "HTTP::Tiny 0.082, a Perl core module since 5.13.9 and available standa ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31486", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/29/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/5", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/07/2", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + }, + { + "type": "URL", + "value": "https://hackeriet.github.io/cpan-http-tiny-overview/", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/18/14", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/05/03/4", + }, + { + "type": "URL", + "value": "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2005-2541", + "installedVersion": "1.34+dfsg-1", + "packageName": "tar", + "references": [ + "http://marc.info/?l=bugtraq&m=112327628230258&w=2", + "https://access.redhat.com/security/cve/CVE-2005-2541", + "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + "https://www.cve.org/CVERecord?id=CVE-2005-2541", + ], + }, + "category": "Vulnerability", + "description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "tar: does not properly warn the user when extracting setuid or setgid files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2005-2541", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=112327628230258&w=2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2005-2541", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2005-2541", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-48303", + "installedVersion": "1.34+dfsg-1", + "packageName": "tar", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0959", + "https://access.redhat.com/security/cve/CVE-2022-48303", + "https://bugzilla.redhat.com/2149722", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + "https://errata.almalinux.org/9/ALSA-2023-0959.html", + "https://errata.rockylinux.org/RLSA-2023:0959", + "https://linux.oracle.com/cve/CVE-2022-48303.html", + "https://linux.oracle.com/errata/ELSA-2023-0959.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + "https://savannah.gnu.org/bugs/?62387", + "https://savannah.gnu.org/patch/?10307", + "https://ubuntu.com/security/notices/USN-5900-1", + "https://ubuntu.com/security/notices/USN-5900-2", + "https://www.cve.org/CVERecord?id=CVE-2022-48303", + ], + }, + "category": "Vulnerability", + "description": "GNU Tar through 1.34 has a one-byte out-of-bounds read that results in use of uninitialized memory for a conditional jump. Exploitation to change the flow of control has not been demonstrated. The issue occurs in from_header in list.c via a V7 archive in which mtime has approximately 11 whitespace characters.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "heap buffer overflow at from_header() in list.c via specially crafted checksum", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-48303", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0959", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149722", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0959.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0959", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-48303.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0959.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/bugs/?62387", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/patch/?10307", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5900-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5900-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-48303", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1:1.2.11.dfsg-2+deb11u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-37434", + "installedVersion": "1:1.2.11.dfsg-2", + "packageName": "zlib1g", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/37", + "http://seclists.org/fulldisclosure/2022/Oct/38", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/42", + "http://www.openwall.com/lists/oss-security/2022/08/05/2", + "http://www.openwall.com/lists/oss-security/2022/08/09/1", + "https://access.redhat.com/errata/RHSA-2022:8291", + "https://access.redhat.com/security/cve/CVE-2022-37434", + "https://bugzilla.redhat.com/2116639", + "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + "https://errata.almalinux.org/9/ALSA-2022-8291.html", + "https://errata.rockylinux.org/RLSA-2022:8291", + "https://github.com/curl/curl/issues/9271", + "https://github.com/ivd38/zlib_overflow", + "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + "https://linux.oracle.com/cve/CVE-2022-37434.html", + "https://linux.oracle.com/errata/ELSA-2023-1095.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + "https://security.netapp.com/advisory/ntap-20220901-0005/", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://support.apple.com/kb/HT213488", + "https://support.apple.com/kb/HT213489", + "https://support.apple.com/kb/HT213490", + "https://support.apple.com/kb/HT213491", + "https://support.apple.com/kb/HT213493", + "https://support.apple.com/kb/HT213494", + "https://ubuntu.com/security/notices/USN-5570-1", + "https://ubuntu.com/security/notices/USN-5570-2", + "https://ubuntu.com/security/notices/USN-5573-1", + "https://www.cve.org/CVERecord?id=CVE-2022-37434", + "https://www.debian.org/security/2022/dsa-5218", + ], + }, + "category": "Vulnerability", + "description": "zlib through 1.2.12 has a heap-based buffer over-read or buffer overflow in inflate in inflate.c via a large gzip header extra field. NOTE: only applications that call inflateGetHeader are affected. Some common applications bundle the affected zlib source code but may be unable to call inflateGetHeader (e.g., see the nodejs/node reference).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "heap-based buffer over-read and overflow in inflate() in inflate.c via a large gzip header extra field", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-37434", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/37", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/38", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/41", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/42", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/08/05/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/08/09/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8291", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2116639", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8291.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8291", + }, + { + "type": "URL", + "value": "https://github.com/curl/curl/issues/9271", + }, + { + "type": "URL", + "value": "https://github.com/ivd38/zlib_overflow", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + }, + { + "type": "URL", + "value": "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-37434.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-1095.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220901-0005/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0007/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213488", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213489", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213490", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213491", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213493", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213494", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5570-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5570-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5573-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5218", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1:1.2.11.dfsg-2+deb11u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-25032", + "installedVersion": "1:1.2.11.dfsg-2", + "packageName": "zlib1g", + "references": [ + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "http://www.openwall.com/lists/oss-security/2022/03/25/2", + "http://www.openwall.com/lists/oss-security/2022/03/26/1", + "https://access.redhat.com/errata/RHSA-2022:8420", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + "https://access.redhat.com/security/cve/CVE-2018-25032", + "https://bugzilla.redhat.com/2067945", + "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + "https://errata.almalinux.org/9/ALSA-2022-8420.html", + "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + "https://github.com/madler/zlib/issues/605", + "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + "https://linux.oracle.com/cve/CVE-2018-25032.html", + "https://linux.oracle.com/errata/ELSA-2022-9565.html", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + "https://security.gentoo.org/glsa/202210-42", + "https://security.netapp.com/advisory/ntap-20220526-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5355-1", + "https://ubuntu.com/security/notices/USN-5355-2", + "https://ubuntu.com/security/notices/USN-5359-1", + "https://ubuntu.com/security/notices/USN-5359-2", + "https://ubuntu.com/security/notices/USN-5739-1", + "https://www.cve.org/CVERecord?id=CVE-2018-25032", + "https://www.debian.org/security/2022/dsa-5111", + "https://www.openwall.com/lists/oss-security/2022/03/24/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/3", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "A flaw found in zlib when compressing (not decompressing) certain inputs", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-25032", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/33", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/35", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/38", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/03/25/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/03/26/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8420", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2067945", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8420.html", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/issues/605", + }, + { + "type": "URL", + "value": "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + }, + { + "type": "URL", + "value": "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2018-25032.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9565.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-42", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220526-0009/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0004/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213255", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213256", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213257", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5355-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5355-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5359-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5359-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5739-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5111", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/24/1", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/28/1", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/28/3", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'kube-proxy' of DaemonSet 'kube-proxy' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV009", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009", + ], + }, + "category": "Misconfiguration", + "description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Do not set 'spec.template.spec.hostNetwork' to true.", + "name": "Access to host network(DaemonSet 'kube-proxy' should not set 'spec.template.spec.hostNetwork' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv009", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV015", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015", + ], + }, + "category": "Misconfiguration", + "description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'containers[].resources.requests.cpu'.", + "name": "CPU requests not specified(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.requests.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv015", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV017", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv017", + ], + }, + "category": "Misconfiguration", + "description": "Privileged containers share namespaces with the host system and do not offer any security. They should be used exclusively for system containers that require high privileges.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Change 'containers[].securityContext.privileged' to 'false'.", + "name": "Privileged container(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.privileged' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv017", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV023", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023", + ], + }, + "category": "Misconfiguration", + "description": "HostPath volumes must be forbidden.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Do not set 'spec.volumes[*].hostPath'.", + "name": "hostPath volumes mounted(DaemonSet 'kube-proxy' should not set 'spec.template.volumes.hostPath')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv023", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3374", + "installedVersion": "2.2.4", + "packageName": "apt", + "references": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374", + ], + }, + "category": "Vulnerability", + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + }, + { + "type": "URL", + "value": "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + }, + { + "type": "URL", + "value": "https://seclists.org/fulldisclosure/2011/Sep/221", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2011-3374", + }, + { + "type": "URL", + "value": "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2011-3374", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "1:2.36.1-8+deb11u1", + "packageName": "bsdutils", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2016-2781", + "installedVersion": "8.32-4+b1", + "packageName": "coreutils", + "references": [ + "http://seclists.org/oss-sec/2016/q1/452", + "http://www.openwall.com/lists/oss-security/2016/02/28/2", + "http://www.openwall.com/lists/oss-security/2016/02/28/3", + "https://access.redhat.com/security/cve/CVE-2016-2781", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lore.kernel.org/patchwork/patch/793178/", + "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + "https://www.cve.org/CVERecord?id=CVE-2016-2781", + ], + }, + "category": "Vulnerability", + "description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "coreutils: Non-privileged session can escape to the parent session in chroot", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2016-2781", + }, + { + "type": "URL", + "value": "http://seclists.org/oss-sec/2016/q1/452", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2016/02/28/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2016/02/28/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/patchwork/patch/793178/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2016-2781", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-18018", + "installedVersion": "8.32-4+b1", + "packageName": "coreutils", + "references": [ + "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + "https://access.redhat.com/security/cve/CVE-2017-18018", + "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + "https://www.cve.org/CVERecord?id=CVE-2017-18018", + ], + }, + "category": "Vulnerability", + "description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX "-R -L" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "coreutils: race condition vulnerability in chown and chgrp", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-18018", + }, + { + "type": "URL", + "value": "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-18018", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-18018", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.20.10", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1664", + "installedVersion": "1.20.9", + "packageName": "dpkg", + "references": [ + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1664", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f23dddc17f69c9598477098c7fb9936e15fa495", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=58814cacee39c4ce9e2cd0e3a3b9b57ad437eff5", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=7a6c03cb34d4a09f35df2f10779cbf1b70a5200b", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=faa4c92debe45412bfcf8a44f26e827800bb24be", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00033.html", + "https://lists.debian.org/debian-security-announce/2022/msg00115.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1664", + "https://security.netapp.com/advisory/ntap-20221007-0002/", + "https://ubuntu.com/security/notices/USN-5446-1", + "https://ubuntu.com/security/notices/USN-5446-2", + ], + }, + "category": "Vulnerability", + "description": "Dpkg::Source::Archive in dpkg, the Debian package management system, before version 1.21.8, 1.20.10, 1.19.8, 1.18.26 is prone to a directory traversal vulnerability. When extracting untrusted source packages in v2 and v3 source package formats that include a debian.tar, the in-place extraction can lead to directory traversal situations on specially crafted orig.tar and debian.tar tarballs.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Dpkg::Source::Archive in dpkg, the Debian package management system, b ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1664", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f23dddc17f69c9598477098c7fb9936e15fa495", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=58814cacee39c4ce9e2cd0e3a3b9b57ad437eff5", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=7a6c03cb34d4a09f35df2f10779cbf1b70a5200b", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=faa4c92debe45412bfcf8a44f26e827800bb24be", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/05/msg00033.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-security-announce/2022/msg00115.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1664", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221007-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5446-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5446-2", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.2.27-2+deb11u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-34903", + "installedVersion": "2.2.27-2+deb11u1", + "packageName": "gpgv", + "references": [ + "http://www.openwall.com/lists/oss-security/2022/07/02/1", + "https://access.redhat.com/errata/RHSA-2022:6602", + "https://access.redhat.com/security/cve/CVE-2022-34903", + "https://bugs.debian.org/1014157", + "https://bugzilla.redhat.com/2102868", + "https://bugzilla.redhat.com/show_bug.cgi?id=2102868", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34903", + "https://dev.gnupg.org/T6027", + "https://errata.almalinux.org/9/ALSA-2022-6602.html", + "https://errata.rockylinux.org/RLSA-2022:6602", + "https://linux.oracle.com/cve/CVE-2022-34903.html", + "https://linux.oracle.com/errata/ELSA-2022-6602.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-34903", + "https://security.netapp.com/advisory/ntap-20220826-0005/", + "https://ubuntu.com/security/notices/USN-5503-1", + "https://ubuntu.com/security/notices/USN-5503-2", + "https://www.cve.org/CVERecord?id=CVE-2022-34903", + "https://www.debian.org/security/2022/dsa-5174", + "https://www.openwall.com/lists/oss-security/2022/06/30/1", + ], + }, + "category": "Vulnerability", + "description": "GnuPG through 2.3.6, in unusual situations where an attacker possesses any secret-key information from a victim's keyring and other constraints (e.g., use of GPGME) are met, allows signature forgery via injection into the status line.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Signature spoofing via status line injection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-34903", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/07/02/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6602", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/1014157", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2102868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2102868", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T6027", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6602.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:6602", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-34903.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-6602.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220826-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5503-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5503-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5174", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/06/30/1", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3219", + "installedVersion": "2.2.27-2+deb11u1", + "packageName": "gpgv", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-3219", + "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + "https://dev.gnupg.org/D556", + "https://dev.gnupg.org/T5993", + "https://marc.info/?l=oss-security&m=165696590211434&w=4", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + "https://security.netapp.com/advisory/ntap-20230324-0001/", + "https://www.cve.org/CVERecord?id=CVE-2022-3219", + ], + }, + "category": "Vulnerability", + "description": "GnuPG can be made to spin on a relatively small input by (for example) crafting a public key with thousands of signatures attached, compressed down to just a few KB.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "denial of service issue (resource consumption) using compressed packets", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3219", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3219", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/D556", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5993", + }, + { + "type": "URL", + "value": "https://marc.info/?l=oss-security&m=165696590211434&w=4", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230324-0001/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3219", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.10-4+deb11u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1271", + "installedVersion": "1.10-4", + "packageName": "gzip", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8", + ], + }, + "category": "Vulnerability", + "description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "arbitrary-file-write vulnerability", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1271", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:4940", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2073310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-4940.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:4940", + }, + { + "type": "URL", + "value": "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1271.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5052.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-01", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220930-0006/", + }, + { + "type": "URL", + "value": "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-4", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/04/07/8", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.7-1", + "packageName": "iptables", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3374", + "installedVersion": "2.2.4", + "packageName": "libapt-pkg6.0", + "references": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374", + ], + }, + "category": "Vulnerability", + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + }, + { + "type": "URL", + "value": "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + }, + { + "type": "URL", + "value": "https://seclists.org/fulldisclosure/2011/Sep/221", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2011-3374", + }, + { + "type": "URL", + "value": "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2011-3374", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.31-13+deb11u4", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3999", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3999", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3999.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9234.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221104-0001/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/01/24/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-4756", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756", + ], + }, + "category": "Vulnerability", + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-4756", + }, + { + "type": "URL", + "value": "http://cxib.net/stuff/glob-0day.c", + }, + { + "type": "URL", + "value": "http://securityreason.com/achievement_securityalert/89", + }, + { + "type": "URL", + "value": "http://securityreason.com/exploitalert/9223", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-4756", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-20796", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796", + ], + }, + "category": "Vulnerability", + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-20796", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/107160", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190315-0002/", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-20796", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010022", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: stack guard protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010022", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010023", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010023", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109167", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010024", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: ASLR bypass using cache of thread stack and heap", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010024", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109162", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010025", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is "ASLR bypass itself is not a vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: information disclosure of heap addresses of pthread_created thread", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010025", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-9192", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-9192", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-9192", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.31-13+deb11u4", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3999", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3999", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3999.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9234.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221104-0001/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/01/24/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-4756", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756", + ], + }, + "category": "Vulnerability", + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-4756", + }, + { + "type": "URL", + "value": "http://cxib.net/stuff/glob-0day.c", + }, + { + "type": "URL", + "value": "http://securityreason.com/achievement_securityalert/89", + }, + { + "type": "URL", + "value": "http://securityreason.com/exploitalert/9223", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-4756", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-20796", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796", + ], + }, + "category": "Vulnerability", + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-20796", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/107160", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190315-0002/", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-20796", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010022", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: stack guard protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010022", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010023", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010023", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109167", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010024", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: ASLR bypass using cache of thread stack and heap", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010024", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109162", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010025", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is "ASLR bypass itself is not a vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: information disclosure of heap addresses of pthread_created thread", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010025", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-9192", + "installedVersion": "2.31-13+deb11u3", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-9192", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-9192", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1304", + "installedVersion": "1.46.2-2", + "packageName": "libcom-err2", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8361", + "https://access.redhat.com/security/cve/CVE-2022-1304", + "https://bugzilla.redhat.com/2069726", + "https://bugzilla.redhat.com/show_bug.cgi?id=2069726", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1304", + "https://errata.almalinux.org/9/ALSA-2022-8361.html", + "https://errata.rockylinux.org/RLSA-2022:8361", + "https://linux.oracle.com/cve/CVE-2022-1304.html", + "https://linux.oracle.com/errata/ELSA-2022-8361.html", + "https://marc.info/?l=linux-ext4&m=165056234501732&w=2", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1304", + "https://ubuntu.com/security/notices/USN-5464-1", + "https://www.cve.org/CVERecord?id=CVE-2022-1304", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "e2fsprogs: out-of-bounds read/write via crafted filesystem", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1304", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8361", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1304", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2069726", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2069726", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1304", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8361.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8361", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1304.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8361.html", + }, + { + "type": "URL", + "value": "https://marc.info/?l=linux-ext4&m=165056234501732&w=2", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1304", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5464-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1304", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-8457", + "installedVersion": "5.3.28+dfsg1-0.8", + "packageName": "libdb5.3", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + "https://access.redhat.com/security/cve/CVE-2019-8457", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + "https://linux.oracle.com/cve/CVE-2019-8457.html", + "https://linux.oracle.com/errata/ELSA-2020-1810.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + "https://security.netapp.com/advisory/ntap-20190606-0002/", + "https://ubuntu.com/security/notices/USN-4004-1", + "https://ubuntu.com/security/notices/USN-4004-2", + "https://ubuntu.com/security/notices/USN-4019-1", + "https://ubuntu.com/security/notices/USN-4019-2", + "https://usn.ubuntu.com/4004-1/", + "https://usn.ubuntu.com/4004-2/", + "https://usn.ubuntu.com/4019-1/", + "https://usn.ubuntu.com/4019-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-8457", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.sqlite.org/releaselog/3_28_0.html", + "https://www.sqlite.org/src/info/90acdbfce9c08858", + ], + }, + "category": "Vulnerability", + "description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "sqlite: heap out-of-bound read in function rtreenode()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-8457", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-8457.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1810.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190606-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4004-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4004-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4019-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4019-2", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4004-1/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4004-2/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4019-1/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4019-2/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2020.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2020.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2020.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + }, + { + "type": "URL", + "value": "https://www.sqlite.org/releaselog/3_28_0.html", + }, + { + "type": "URL", + "value": "https://www.sqlite.org/src/info/90acdbfce9c08858", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-33560", + "installedVersion": "1.8.7-6", + "packageName": "libgcrypt20", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + "https://access.redhat.com/security/cve/CVE-2021-33560", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + "https://dev.gnupg.org/T5305", + "https://dev.gnupg.org/T5328", + "https://dev.gnupg.org/T5466", + "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2021-4409.html", + "https://linux.oracle.com/cve/CVE-2021-33560.html", + "https://linux.oracle.com/errata/ELSA-2022-9263.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33560", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + ], + }, + "category": "Vulnerability", + "description": "Libgcrypt before 1.8.8 and 1.9.x before 1.9.3 mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm, and the window size is not chosen appropriately. This, for example, affects use of ElGamal in OpenPGP.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libgcrypt: mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33560", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5305", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5328", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5466", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + }, + { + "type": "URL", + "value": "https://eprint.iacr.org/2021/923", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4409.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-33560.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9263.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-13", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5080-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5080-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-6829", + "installedVersion": "1.8.7-6", + "packageName": "libgcrypt20", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-6829", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + "https://www.cve.org/CVERecord?id=CVE-2018-6829", + "https://www.oracle.com/security-alerts/cpujan2020.html", + ], + }, + "category": "Vulnerability", + "description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libgcrypt: ElGamal implementation doesn't have semantic security due to incorrectly encoded plaintexts possibly allowing to obtain sensitive information", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-6829", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-6829", + }, + { + "type": "URL", + "value": "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + }, + { + "type": "URL", + "value": "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + }, + { + "type": "URL", + "value": "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-6829", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2020.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "3.7.1-5+deb11u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2509", + "installedVersion": "3.7.1-5", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6854", + "https://access.redhat.com/security/cve/CVE-2022-2509", + "https://bugzilla.redhat.com/2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2076626", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108635", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2119770", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2509", + "https://errata.almalinux.org/9/ALSA-2022-6854.html", + "https://errata.rockylinux.org/RLSA-2022:6854", + "https://gnutls.org/security-new.html (GNUTLS-SA-2022-07-07)", + "https://gnutls.org/security-new.html#GNUTLS-SA-2022-07-07", + "https://linux.oracle.com/cve/CVE-2022-2509.html", + "https://linux.oracle.com/errata/ELSA-2022-7105.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00002.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6FL27JS3VM74YEQU7PGB62USO3KSBYZX/", + "https://lists.gnupg.org/pipermail/gnutls-help/2022-July/004746.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2509", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2509", + "https://www.debian.org/security/2022/dsa-5203", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability found in gnutls. This security flaw happens because of a double free error occurs during verification of pkcs7 signatures in gnutls_pkcs7_verify function.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Double free during gnutls_pkcs7_verify", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2509", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6854", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2108977", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2076626", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2108635", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2108977", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2119770", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6854.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:6854", + }, + { + "type": "URL", + "value": "https://gnutls.org/security-new.html (GNUTLS-SA-2022-07-07)", + }, + { + "type": "URL", + "value": "https://gnutls.org/security-new.html#GNUTLS-SA-2022-07-07", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2509.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-7105.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/08/msg00002.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6FL27JS3VM74YEQU7PGB62USO3KSBYZX/", + }, + { + "type": "URL", + "value": "https://lists.gnupg.org/pipermail/gnutls-help/2022-July/004746.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5550-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5203", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.7.1-5+deb11u3", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0361", + "installedVersion": "3.7.1-5", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:1141", + "https://access.redhat.com/security/cve/CVE-2023-0361", + "https://bugzilla.redhat.com/2162596", + "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + "https://errata.almalinux.org/9/ALSA-2023-1141.html", + "https://errata.rockylinux.org/RLSA-2023:1569", + "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + "https://gitlab.com/gnutls/gnutls/-/issues/1050", + "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + "https://linux.oracle.com/cve/CVE-2023-0361.html", + "https://linux.oracle.com/errata/ELSA-2023-1569.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + "https://security.netapp.com/advisory/ntap-20230324-0005/", + "https://ubuntu.com/security/notices/USN-5901-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0361", + ], + }, + "category": "Vulnerability", + "description": "A timing side-channel in the handling of RSA ClientKeyExchange messages was discovered in GnuTLS. This side-channel can be sufficient to recover the key encrypted in the RSA ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption the attacker would need to send a large amount of specially crafted messages to the vulnerable server. By recovering the secret from the ClientKeyExchange message, the attacker would be able to decrypt the application data exchanged over that connection.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "timing side-channel in the TLS RSA key exchange code", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0361", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:1141", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0361", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2162596", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-1141.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:1569", + }, + { + "type": "URL", + "value": "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1050", + }, + { + "type": "URL", + "value": "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0361.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-1569.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230324-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5901-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0361", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.7.1-5+deb11u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-4209", + "installedVersion": "3.7.1-5", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-4209", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044156", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-4209", + "https://gitlab.com/gnutls/gnutls/-/commit/3db352734472d851318944db13be73da61300568", + "https://gitlab.com/gnutls/gnutls/-/issues/1306", + "https://gitlab.com/gnutls/gnutls/-/merge_requests/1503", + "https://nvd.nist.gov/vuln/detail/CVE-2021-4209", + "https://security.netapp.com/advisory/ntap-20220915-0005/", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://ubuntu.com/security/notices/USN-5750-1", + "https://www.cve.org/CVERecord?id=CVE-2021-4209", + ], + }, + "category": "Vulnerability", + "description": "A NULL pointer dereference flaw was found in GnuTLS. As Nettle's hash update functions internally call memcpy, providing zero-length input may cause undefined behavior. This flaw leads to a denial of service after authentication in rare circumstances.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "GnuTLS: Null pointer dereference in MD_UPDATE", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-4209", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-4209", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2044156", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-4209", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/commit/3db352734472d851318944db13be73da61300568", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1306", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/merge_requests/1503", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-4209", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220915-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5550-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5750-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-4209", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3389", + "installedVersion": "3.7.1-5", + "packageName": "libgnutls30", + "references": [ + "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + "http://curl.haxx.se/docs/adv_20120124B.html", + "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + "http://ekoparty.org/2011/juliano-rizzo.php", + "http://eprint.iacr.org/2004/111", + "http://eprint.iacr.org/2006/136", + "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + "http://marc.info/?l=bugtraq&m=132750579901589&w=2", + "http://marc.info/?l=bugtraq&m=132872385320240&w=2", + "http://marc.info/?l=bugtraq&m=133365109612558&w=2", + "http://marc.info/?l=bugtraq&m=133728004526190&w=2", + "http://marc.info/?l=bugtraq&m=134254866602253&w=2", + "http://marc.info/?l=bugtraq&m=134254957702612&w=2", + "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + "http://osvdb.org/74829", + "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + "http://secunia.com/advisories/45791", + "http://secunia.com/advisories/47998", + "http://secunia.com/advisories/48256", + "http://secunia.com/advisories/48692", + "http://secunia.com/advisories/48915", + "http://secunia.com/advisories/48948", + "http://secunia.com/advisories/49198", + "http://secunia.com/advisories/55322", + "http://secunia.com/advisories/55350", + "http://secunia.com/advisories/55351", + "http://security.gentoo.org/glsa/glsa-201203-02.xml", + "http://security.gentoo.org/glsa/glsa-201406-32.xml", + "http://support.apple.com/kb/HT4999", + "http://support.apple.com/kb/HT5001", + "http://support.apple.com/kb/HT5130", + "http://support.apple.com/kb/HT5281", + "http://support.apple.com/kb/HT5501", + "http://support.apple.com/kb/HT6150", + "http://technet.microsoft.com/security/advisory/2588513", + "http://vnhacker.blogspot.com/2011/09/beast.html", + "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + "http://www.debian.org/security/2012/dsa-2398", + "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + "http://www.ibm.com/developerworks/java/jdk/alerts/", + "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + "http://www.insecure.cl/Beast-SSL.rar", + "http://www.kb.cert.org/vuls/id/864643", + "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + "http://www.opera.com/docs/changelogs/mac/1151/", + "http://www.opera.com/docs/changelogs/mac/1160/", + "http://www.opera.com/docs/changelogs/unix/1151/", + "http://www.opera.com/docs/changelogs/unix/1160/", + "http://www.opera.com/docs/changelogs/windows/1151/", + "http://www.opera.com/docs/changelogs/windows/1160/", + "http://www.opera.com/support/kb/view/1004/", + "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + "http://www.securityfocus.com/bid/49388", + "http://www.securityfocus.com/bid/49778", + "http://www.securitytracker.com/id/1029190", + "http://www.securitytracker.com/id?1025997", + "http://www.securitytracker.com/id?1026103", + "http://www.securitytracker.com/id?1026704", + "http://www.ubuntu.com/usn/USN-1263-1", + "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + "https://access.redhat.com/security/cve/CVE-2011-3389", + "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + "https://bugzilla.novell.com/show_bug.cgi?id=719047", + "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + "https://hermes.opensuse.org/messages/13154861", + "https://hermes.opensuse.org/messages/13155432", + "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + "https://linux.oracle.com/cve/CVE-2011-3389.html", + "https://linux.oracle.com/errata/ELSA-2011-1380.html", + "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + "https://ubuntu.com/security/notices/USN-1263-1", + "https://www.cve.org/CVERecord?id=CVE-2011-3389", + ], + }, + "category": "Vulnerability", + "description": "The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a "BEAST" attack.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3389", + }, + { + "type": "URL", + "value": "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + }, + { + "type": "URL", + "value": "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + }, + { + "type": "URL", + "value": "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + }, + { + "type": "URL", + "value": "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + }, + { + "type": "URL", + "value": "http://curl.haxx.se/docs/adv_20120124B.html", + }, + { + "type": "URL", + "value": "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + }, + { + "type": "URL", + "value": "http://ekoparty.org/2011/juliano-rizzo.php", + }, + { + "type": "URL", + "value": "http://eprint.iacr.org/2004/111", + }, + { + "type": "URL", + "value": "http://eprint.iacr.org/2006/136", + }, + { + "type": "URL", + "value": "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + }, + { + "type": "URL", + "value": "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=132750579901589&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=132872385320240&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=133365109612558&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=133728004526190&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=134254866602253&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=134254957702612&w=2", + }, + { + "type": "URL", + "value": "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + }, + { + "type": "URL", + "value": "http://osvdb.org/74829", + }, + { + "type": "URL", + "value": "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + }, + { + "type": "URL", + "value": "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/45791", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/47998", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48256", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48692", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48915", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48948", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/49198", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/55322", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/55350", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/55351", + }, + { + "type": "URL", + "value": "http://security.gentoo.org/glsa/glsa-201203-02.xml", + }, + { + "type": "URL", + "value": "http://security.gentoo.org/glsa/glsa-201406-32.xml", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT4999", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5001", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5130", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5281", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5501", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT6150", + }, + { + "type": "URL", + "value": "http://technet.microsoft.com/security/advisory/2588513", + }, + { + "type": "URL", + "value": "http://vnhacker.blogspot.com/2011/09/beast.html", + }, + { + "type": "URL", + "value": "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + }, + { + "type": "URL", + "value": "http://www.debian.org/security/2012/dsa-2398", + }, + { + "type": "URL", + "value": "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + }, + { + "type": "URL", + "value": "http://www.ibm.com/developerworks/java/jdk/alerts/", + }, + { + "type": "URL", + "value": "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + }, + { + "type": "URL", + "value": "http://www.insecure.cl/Beast-SSL.rar", + }, + { + "type": "URL", + "value": "http://www.kb.cert.org/vuls/id/864643", + }, + { + "type": "URL", + "value": "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/mac/1151/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/mac/1160/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/unix/1151/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/unix/1160/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/windows/1151/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/windows/1160/", + }, + { + "type": "URL", + "value": "http://www.opera.com/support/kb/view/1004/", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + }, + { + "type": "URL", + "value": "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + }, + { + "type": "URL", + "value": "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/49388", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/49778", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id/1029190", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id?1025997", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id?1026103", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id?1026704", + }, + { + "type": "URL", + "value": "http://www.ubuntu.com/usn/USN-1263-1", + }, + { + "type": "URL", + "value": "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2011-3389", + }, + { + "type": "URL", + "value": "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + }, + { + "type": "URL", + "value": "https://bugzilla.novell.com/show_bug.cgi?id=719047", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + }, + { + "type": "URL", + "value": "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + }, + { + "type": "URL", + "value": "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + }, + { + "type": "URL", + "value": "https://hermes.opensuse.org/messages/13154861", + }, + { + "type": "URL", + "value": "https://hermes.opensuse.org/messages/13155432", + }, + { + "type": "URL", + "value": "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2011-3389.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2011-1380.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + }, + { + "type": "URL", + "value": "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-1263-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2011-3389", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libgssapi-krb5-2", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libgssapi-krb5-2", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.7-1", + "packageName": "libip4tc2", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.7-1", + "packageName": "libip6tc2", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libk5crypto3", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libk5crypto3", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5-3", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5-3", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5support0", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5support0", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "5.2.5-2.1~deb11u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1271", + "installedVersion": "5.2.5-2", + "packageName": "liblzma5", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8", + ], + }, + "category": "Vulnerability", + "description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "arbitrary-file-write vulnerability", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1271", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:4940", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2073310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-4940.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:4940", + }, + { + "type": "URL", + "value": "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1271.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5052.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-01", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220930-0006/", + }, + { + "type": "URL", + "value": "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-4", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/04/07/8", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "10.36-2+deb11u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1586", + "installedVersion": "10.36-2", + "packageName": "libpcre2-8-0", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:5809", + "https://access.redhat.com/security/cve/CVE-2022-1586", + "https://bugzilla.redhat.com/2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1586", + "https://errata.almalinux.org/8/ALSA-2022-5809.html", + "https://errata.rockylinux.org/RLSA-2022:5809", + "https://github.com/PCRE2Project/pcre2/commit/50a51cb7e67268e6ad417eb07c9de9bfea5cc55a,", + "https://github.com/PCRE2Project/pcre2/commit/d4fa336fbcc388f89095b184ba6d99422cfc676c", + "https://linux.oracle.com/cve/CVE-2022-1586.html", + "https://linux.oracle.com/errata/ELSA-2022-5809.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1586", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1586", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "pcre2: Out-of-bounds read in compile_xclass_matchingpath in pcre2_jit_compile.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1586", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:5809", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1586", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2077976", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077976", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077976,", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1586", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2022-5809.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5809", + }, + { + "type": "URL", + "value": "https://github.com/PCRE2Project/pcre2/commit/50a51cb7e67268e6ad417eb07c9de9bfea5cc55a,", + }, + { + "type": "URL", + "value": "https://github.com/PCRE2Project/pcre2/commit/d4fa336fbcc388f89095b184ba6d99422cfc676c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1586.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5809.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1586", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221028-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1586", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "10.36-2+deb11u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1587", + "installedVersion": "10.36-2", + "packageName": "libpcre2-8-0", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-1587", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077983,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1587", + "https://github.com/PCRE2Project/pcre2/commit/03654e751e7f0700693526b67dfcadda6b42c9d0", + "https://linux.oracle.com/cve/CVE-2022-1587.html", + "https://linux.oracle.com/errata/ELSA-2022-5251.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1587", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1587", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "pcre2: Out-of-bounds read in get_recurse_data_length in pcre2_jit_compile.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1587", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1587", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077983,", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1587", + }, + { + "type": "URL", + "value": "https://github.com/PCRE2Project/pcre2/commit/03654e751e7f0700693526b67dfcadda6b42c9d0", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1587.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5251.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1587", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221028-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1587", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-11164", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://openwall.com/lists/oss-security/2017/07/11/3", + "http://www.openwall.com/lists/oss-security/2023/04/11/1", + "http://www.openwall.com/lists/oss-security/2023/04/12/1", + "http://www.securityfocus.com/bid/99575", + "https://access.redhat.com/security/cve/CVE-2017-11164", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + "https://www.cve.org/CVERecord?id=CVE-2017-11164", + ], + }, + "category": "Vulnerability", + "description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-11164", + }, + { + "type": "URL", + "value": "http://openwall.com/lists/oss-security/2017/07/11/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/11/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/12/1", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/99575", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-11164", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-16231", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + "http://seclists.org/fulldisclosure/2018/Dec/33", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101688", + "https://access.redhat.com/security/cve/CVE-2017-16231", + "https://bugs.exim.org/show_bug.cgi?id=2047", + "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + "https://www.cve.org/CVERecord?id=CVE-2017-16231", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-16231", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2018/Dec/33", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/11", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/7", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/8", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/101688", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-16231", + }, + { + "type": "URL", + "value": "https://bugs.exim.org/show_bug.cgi?id=2047", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-16231", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-7245", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7245", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7245", + ], + }, + "category": "Vulnerability", + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-7245", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/97067", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2018:2486", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-7245", + }, + { + "type": "URL", + "value": "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201710-25", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-7245", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-7246", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7246", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7246", + ], + }, + "category": "Vulnerability", + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-7246", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/97067", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2018:2486", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-7246", + }, + { + "type": "URL", + "value": "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201710-25", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-7246", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-20838", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://access.redhat.com/security/cve/CVE-2019-20838", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2019-20838.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2019-20838", + "https://www.pcre.org/original/changelog.txt", + ], + }, + "category": "Vulnerability", + "description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "pcre: Buffer over-read in JIT when UTF is disabled and \\X or \\R has fixed quantifier greater than 1", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-20838", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2020/Dec/32", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/Feb/14", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/717920", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4373", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-20838.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT211931", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212147", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5425-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://www.pcre.org/original/changelog.txt", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36084", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36084", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + "https://linux.oracle.com/cve/CVE-2021-36084.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36084", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libsepol: use-after-free in __cil_verify_classperms()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36084", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36084.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36084", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36085", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36085", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + "https://linux.oracle.com/cve/CVE-2021-36085.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36085", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libsepol: use-after-free in __cil_verify_classperms()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36085", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36085.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36085", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36086", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36086", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + "https://linux.oracle.com/cve/CVE-2021-36086.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36086", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "use-after-free in cil_reset_classpermission()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36086", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36086.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36086", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36087", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36087", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + "https://linux.oracle.com/cve/CVE-2021-36087.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36087", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libsepol: heap-based buffer overflow in ebitmap_match_any()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36087", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36087.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36087", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1292", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-1292", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-953464.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1ad73b4d27bd8c1b369a3cd453681d3a4f1bb9b2", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=548d3f280a6e737673f5b61fce24bb100108dfeb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e5fd1728ef4c7a5bf7c7a7163ca60370460a6e23", + "https://linux.oracle.com/cve/CVE-2022-1292.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VX4KWHPMKYJL6ZLW4M5IU7E5UV5ZWJQU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNU5M7BXMML26G3GPYKFGQYPQDRSNKDD/", + "https://mta.openssl.org/pipermail/openssl-announce/2022-May/000224.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1292", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0011", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220602-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://ubuntu.com/security/notices/USN-5402-1", + "https://ubuntu.com/security/notices/USN-5402-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1292", + "https://www.debian.org/security/2022/dsa-5139", + "https://www.openssl.org/news/secadv/20220503.txt", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "The c_rehash script does not properly sanitise shell metacharacters to prevent command injection. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.3 (Affected 3.0.0,3.0.1,3.0.2). Fixed in OpenSSL 1.1.1o (Affected 1.1.1-1.1.1n). Fixed in OpenSSL 1.0.2ze (Affected 1.0.2-1.0.2zd).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "c_rehash script allows command injection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1292", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-953464.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1ad73b4d27bd8c1b369a3cd453681d3a4f1bb9b2", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=548d3f280a6e737673f5b61fce24bb100108dfeb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e5fd1728ef4c7a5bf7c7a7163ca60370460a6e23", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1292.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/05/msg00019.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VX4KWHPMKYJL6ZLW4M5IU7E5UV5ZWJQU/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNU5M7BXMML26G3GPYKFGQYPQDRSNKDD/", + }, + { + "type": "URL", + "value": "https://mta.openssl.org/pipermail/openssl-announce/2022-May/000224.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0011", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220602-0009/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5402-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5402-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5139", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220503.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u3", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2068", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2068", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c9c35870601b4a44d86ddbf512b38df38285cfa", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7a9c027159fe9e1bbc2cd38a8a2914bff0d5abd9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9639817dac8bbbaa64d09efad7464ccc405527c7", + "https://linux.oracle.com/cve/CVE-2022-2068.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6WZZBKUHQFGSKGNXXKICSRPL7AMVW5M5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2068", + "https://security.netapp.com/advisory/ntap-20220707-0008/", + "https://ubuntu.com/security/notices/USN-5488-1", + "https://ubuntu.com/security/notices/USN-5488-2", + "https://www.cve.org/CVERecord?id=CVE-2022-2068", + "https://www.debian.org/security/2022/dsa-5169", + "https://www.openssl.org/news/secadv/20220621.txt", + ], + }, + "category": "Vulnerability", + "description": "In addition to the c_rehash shell command injection identified in CVE-2022-1292, further circumstances where the c_rehash script does not properly sanitise shell metacharacters to prevent command injection were found by code review. When the CVE-2022-1292 was fixed it was not discovered that there are other places in the script where the file names of certificates being hashed were possibly passed to a command executed through the shell. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.4 (Affected 3.0.0,3.0.1,3.0.2,3.0.3). Fixed in OpenSSL 1.1.1p (Affected 1.1.1-1.1.1o). Fixed in OpenSSL 1.0.2zf (Affected 1.0.2-1.0.2ze).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "the c_rehash script allows command injection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2068", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c9c35870601b4a44d86ddbf512b38df38285cfa", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7a9c027159fe9e1bbc2cd38a8a2914bff0d5abd9", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9639817dac8bbbaa64d09efad7464ccc405527c7", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2068.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6WZZBKUHQFGSKGNXXKICSRPL7AMVW5M5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220707-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5488-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5488-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5169", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220621.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4450", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (e.g. "CERTIFICATE"), any header data and the payload data. If the function succeeds then the "name_out", "header" and "data" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "double free after calling PEM_read_bio_ex", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4450", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4450.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0215", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The public API function BIO_new_NDEF is a helper function used for streaming +ASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the +SMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by +end user applications. + +The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter +BIO onto the front of it to form a BIO chain, and then returns the new head of +the BIO chain to the caller. Under certain conditions, for example if a CMS +recipient public key is invalid, the new filter BIO is freed and the function +returns a NULL result indicating a failure. However, in this case, the BIO chain +is not properly cleaned up and the BIO passed by the caller still retains +internal pointers to the previously freed filter BIO. If the caller then goes on +to call BIO_pop() on the BIO then a use-after-free will occur. This will most +likely result in a crash. + + + +This scenario occurs directly in the internal function B64_write_ASN1() which +may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on +the BIO. This internal function is in turn called by the public API functions +PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, +SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. + +Other public API functions that may be impacted by this include +i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and +i2d_PKCS7_bio_stream. + +The OpenSSL cms and smime command line applications are similarly affected. + + + +", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "use-after-free following BIO_new_NDEF", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0215", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0215.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0007/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0286", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "X.400 address type confusion in X.509 GeneralName", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0286.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0464", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt", + ], + }, + "category": "Vulnerability", + "description": "A security vulnerability has been identified in all supported versions + +of OpenSSL related to the verification of X.509 certificate chains +that include policy constraints. Attackers may be able to exploit this +vulnerability by creating a malicious certificate chain that triggers +exponential use of computational resources, leading to a denial-of-service +(DoS) attack on affected systems. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0464", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230322.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-2650", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2097", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt", + ], + }, + "category": "Vulnerability", + "description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "AES OCB fails to encrypt some bytes", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2097", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2097.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220715-0011/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230420-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5502-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5343", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220705.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4304", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "timing attack in RSA Decryption implementation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4304", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4304.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0465", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "Applications that use a non-default option when verifying certificates may be +vulnerable to an attack from a malicious CA to circumvent certain checks. + +Invalid certificate policies in leaf certificates are silently ignored by +OpenSSL and other certificate policy checks are skipped for that certificate. +A malicious CA could use this to deliberately assert invalid certificate policies +in order to circumvent policy checking on the certificate altogether. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Invalid certificate policies in leaf certificates are silently ignored", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0465", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0466", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "The function X509_VERIFY_PARAM_add0_policy() is documented to +implicitly enable the certificate policy check when doing certificate +verification. However the implementation of the function does not +enable the check which allows certificates with invalid or incorrect +policies to pass the certificate verification. + +As suddenly enabling the policy check could break existing deployments it was +decided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy() +function. + +Instead the applications that require OpenSSL to perform certificate +policy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly +enable the policy check by calling X509_VERIFY_PARAM_set_flags() with +the X509_V_FLAG_POLICY_CHECK flag argument. + +Certificate policy checks are disabled by default in OpenSSL and are not +commonly used by applications.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Certificate policy check not enabled", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0466", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-6755", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + ], + }, + "category": "Vulnerability", + "description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain "skeleton key" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Dual_EC_DRBG: weak pseudo random number generator", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-6755", + }, + { + "type": "URL", + "value": "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + }, + { + "type": "URL", + "value": "http://rump2007.cr.yp.to/15-shumow.pdf", + }, + { + "type": "URL", + "value": "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + }, + { + "type": "URL", + "value": "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/63657", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-0928", + "installedVersion": "1.1.1n-0+deb11u1", + "packageName": "libssl1.1", + "references": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928", + ], + }, + "category": "Vulnerability", + "description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a "fault-based attack."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "openssl: RSA authentication weakness", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-0928", + }, + { + "type": "URL", + "value": "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + }, + { + "type": "URL", + "value": "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + }, + { + "type": "URL", + "value": "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + }, + { + "type": "URL", + "value": "http://www.osvdb.org/62808", + }, + { + "type": "URL", + "value": "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-0928", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3821", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821", + ], + }, + "category": "Vulnerability", + "description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "buffer overrun in format_timespan() function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3821", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0336", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2139327", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0336", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/23928", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/23933", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3821.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3821", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4415", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4415", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0954", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2155515", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0954", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4415.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/12/21/3", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4392", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392", + ], + }, + "category": "Vulnerability", + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4392", + }, + { + "type": "URL", + "value": "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2013/10/01/9", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4392", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-13529", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529", + ], + }, + "category": "Vulnerability", + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-13529", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-13529.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4361.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210625-0005/", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-13529", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "4.16.0-2+deb11u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-46848", + "installedVersion": "4.16.0-2", + "packageName": "libtasn1-6", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0343", + "https://access.redhat.com/security/cve/CVE-2021-46848", + "https://bugs.gentoo.org/866237", + "https://bugzilla.redhat.com/2140058", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + "https://errata.almalinux.org/9/ALSA-2023-0343.html", + "https://errata.rockylinux.org/RLSA-2023:0343", + "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + "https://gitlab.com/gnutls/libtasn1/-/issues/32", + "https://linux.oracle.com/cve/CVE-2021-46848.html", + "https://linux.oracle.com/errata/ELSA-2023-0343.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + "https://security.netapp.com/advisory/ntap-20221118-0006/", + "https://ubuntu.com/security/notices/USN-5707-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46848", + ], + }, + "category": "Vulnerability", + "description": "GNU Libtasn1 before 4.19.0 has an ETYPE_OK off-by-one array size check that affects asn1_encode_simple_der.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libtasn1: Out-of-bound access in ETYPE_OK", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-46848", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0343", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/866237", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140058", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0343.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0343", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/-/issues/32", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-46848.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0343.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221118-0006/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5707-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-46848", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.3.1-1+deb11u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-46828", + "installedVersion": "1.3.1-1", + "packageName": "libtirpc-common", + "references": [ + "http://git.linux-nfs.org/?p=steved/libtirpc.git;a=commit;h=86529758570cef4c73fb9b9c4104fdc510f701ed", + "https://access.redhat.com/errata/RHSA-2022:8400", + "https://access.redhat.com/security/cve/CVE-2021-46828", + "https://bugzilla.redhat.com/2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118157", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46828", + "https://errata.almalinux.org/9/ALSA-2022-8400.html", + "https://errata.rockylinux.org/RLSA-2022:8400", + "https://linux.oracle.com/cve/CVE-2021-46828.html", + "https://linux.oracle.com/errata/ELSA-2022-8400.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00004.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46828", + "https://security.gentoo.org/glsa/202210-33", + "https://security.netapp.com/advisory/ntap-20221007-0004/", + "https://ubuntu.com/security/notices/USN-5538-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46828", + "https://www.debian.org/security/2022/dsa-5200", + ], + }, + "category": "Vulnerability", + "description": "In libtirpc before 1.3.3rc1, remote attackers could exhaust the file descriptors of a process that uses libtirpc because idle TCP connections are mishandled. This can, in turn, lead to an svc_run infinite loop without accepting new connections.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libtirpc: DoS vulnerability with lots of connections", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-46828", + }, + { + "type": "URL", + "value": "http://git.linux-nfs.org/?p=steved/libtirpc.git;a=commit;h=86529758570cef4c73fb9b9c4104fdc510f701ed", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8400", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2109352", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2109352", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2118157", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8400.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8400", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-46828.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8400.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/08/msg00004.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-33", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221007-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5538-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5200", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.3.1-1+deb11u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-46828", + "installedVersion": "1.3.1-1", + "packageName": "libtirpc3", + "references": [ + "http://git.linux-nfs.org/?p=steved/libtirpc.git;a=commit;h=86529758570cef4c73fb9b9c4104fdc510f701ed", + "https://access.redhat.com/errata/RHSA-2022:8400", + "https://access.redhat.com/security/cve/CVE-2021-46828", + "https://bugzilla.redhat.com/2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118157", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46828", + "https://errata.almalinux.org/9/ALSA-2022-8400.html", + "https://errata.rockylinux.org/RLSA-2022:8400", + "https://linux.oracle.com/cve/CVE-2021-46828.html", + "https://linux.oracle.com/errata/ELSA-2022-8400.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00004.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46828", + "https://security.gentoo.org/glsa/202210-33", + "https://security.netapp.com/advisory/ntap-20221007-0004/", + "https://ubuntu.com/security/notices/USN-5538-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46828", + "https://www.debian.org/security/2022/dsa-5200", + ], + }, + "category": "Vulnerability", + "description": "In libtirpc before 1.3.3rc1, remote attackers could exhaust the file descriptors of a process that uses libtirpc because idle TCP connections are mishandled. This can, in turn, lead to an svc_run infinite loop without accepting new connections.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libtirpc: DoS vulnerability with lots of connections", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-46828", + }, + { + "type": "URL", + "value": "http://git.linux-nfs.org/?p=steved/libtirpc.git;a=commit;h=86529758570cef4c73fb9b9c4104fdc510f701ed", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8400", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2109352", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2109352", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2118157", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8400.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8400", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-46828.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8400.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/08/msg00004.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-33", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221007-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5538-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-46828", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5200", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3821", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821", + ], + }, + "category": "Vulnerability", + "description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "buffer overrun in format_timespan() function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3821", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0336", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2139327", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0336", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/23928", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/23933", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3821.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3821", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4415", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4415", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0954", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2155515", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0954", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4415.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/12/21/3", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4392", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392", + ], + }, + "category": "Vulnerability", + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4392", + }, + { + "type": "URL", + "value": "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2013/10/01/9", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4392", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-13529", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529", + ], + }, + "category": "Vulnerability", + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-13529", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-13529.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4361.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210625-0005/", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-13529", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.7-1", + "packageName": "libxtables12", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4899", + "installedVersion": "1.4.8+dfsg-2.1", + "packageName": "libzstd1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-4899", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4899", + "https://github.com/facebook/zstd/issues/3200", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4899", + "https://www.cve.org/CVERecord?id=CVE-2022-4899", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in zstd v1.4.10, where an attacker can supply empty string as an argument to the command line tool to cause buffer overrun.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "buffer overrun in util.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4899", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4899", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4899", + }, + { + "type": "URL", + "value": "https://github.com/facebook/zstd/issues/3200", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4899", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4899", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-5686", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825", + ], + }, + "category": "Vulnerability", + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-5686", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/27215", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/26048", + }, + { + "type": "URL", + "value": "http://www.vupen.com/english/advisories/2007/3474", + }, + { + "type": "URL", + "value": "https://issues.rpath.com/browse/RPL-1825", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4235", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235", + ], + }, + "category": "Vulnerability", + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/issues/317", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/545", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-26", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4235", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19882", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882", + ], + }, + "category": "Vulnerability", + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19882", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://bugs.archlinux.org/task/64836", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/702252", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/199", + }, + { + "type": "URL", + "value": "https://github.com/void-linux/void-packages/pull/17580", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202008-09", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19882", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29383", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + ], + }, + "category": "Vulnerability", + "description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that "cat /etc/passwd" shows a rogue user account.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Improper input validation in shadow-utils package utility chfn", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/687", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-5686", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825", + ], + }, + "category": "Vulnerability", + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-5686", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/27215", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/26048", + }, + { + "type": "URL", + "value": "http://www.vupen.com/english/advisories/2007/3474", + }, + { + "type": "URL", + "value": "https://issues.rpath.com/browse/RPL-1825", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4235", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235", + ], + }, + "category": "Vulnerability", + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/issues/317", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/545", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-26", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4235", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19882", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882", + ], + }, + "category": "Vulnerability", + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19882", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://bugs.archlinux.org/task/64836", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/702252", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/199", + }, + { + "type": "URL", + "value": "https://github.com/void-linux/void-packages/pull/17580", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202008-09", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19882", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29383", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + ], + }, + "category": "Vulnerability", + "description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that "cat /etc/passwd" shows a rogue user account.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Improper input validation in shadow-utils package utility chfn", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/687", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-16156", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + "https://access.redhat.com/security/cve/CVE-2020-16156", + "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + "https://ubuntu.com/security/notices/USN-5689-1", + "https://ubuntu.com/security/notices/USN-5689-2", + "https://www.cve.org/CVERecord?id=CVE-2020-16156", + ], + }, + "category": "Vulnerability", + "description": "CPAN 2.28 allows Signature Verification Bypass.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "perl-CPAN: Bypass of verification of signatures in CHECKSUMS files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-16156", + }, + { + "type": "URL", + "value": "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + }, + { + "type": "URL", + "value": "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5689-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5689-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-16156", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31484", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + "https://github.com/andk/cpanpm/pull/175", + "https://metacpan.org/dist/CPAN/changes", + "https://ubuntu.com/security/notices/USN-6112-1", + "https://ubuntu.com/security/notices/USN-6112-2", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + ], + }, + "category": "Vulnerability", + "description": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "CPAN.pm before 2.35 does not verify TLS certificates when downloading ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31484", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/29/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/5", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/07/2", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + }, + { + "type": "URL", + "value": "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + }, + { + "type": "URL", + "value": "https://github.com/andk/cpanpm/pull/175", + }, + { + "type": "URL", + "value": "https://metacpan.org/dist/CPAN/changes", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6112-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6112-2", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/18/14", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-4116", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2011/11/04/2", + "http://www.openwall.com/lists/oss-security/2011/11/04/4", + "https://access.redhat.com/security/cve/CVE-2011-4116", + "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + "https://seclists.org/oss-sec/2011/q4/238", + "https://www.cve.org/CVERecord?id=CVE-2011-4116", + ], + }, + "category": "Vulnerability", + "description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "perl: File::Temp insecure temporary file handling", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-4116", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2011/11/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2011/11/04/4", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2011-4116", + }, + { + "type": "URL", + "value": "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + }, + { + "type": "URL", + "value": "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + }, + { + "type": "URL", + "value": "https://seclists.org/oss-sec/2011/q4/238", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2011-4116", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31486", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://hackeriet.github.io/cpan-http-tiny-overview/", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + "https://www.openwall.com/lists/oss-security/2023/05/03/4", + "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/", + ], + }, + "category": "Vulnerability", + "description": "HTTP::Tiny 0.082, a Perl core module since 5.13.9 and available standalone on CPAN, has an insecure default TLS configuration where users must opt in to verify certificates.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "HTTP::Tiny 0.082, a Perl core module since 5.13.9 and available standa ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31486", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/29/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/5", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/07/2", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + }, + { + "type": "URL", + "value": "https://hackeriet.github.io/cpan-http-tiny-overview/", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/18/14", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/05/03/4", + }, + { + "type": "URL", + "value": "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2005-2541", + "installedVersion": "1.34+dfsg-1", + "packageName": "tar", + "references": [ + "http://marc.info/?l=bugtraq&m=112327628230258&w=2", + "https://access.redhat.com/security/cve/CVE-2005-2541", + "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + "https://www.cve.org/CVERecord?id=CVE-2005-2541", + ], + }, + "category": "Vulnerability", + "description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "tar: does not properly warn the user when extracting setuid or setgid files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2005-2541", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=112327628230258&w=2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2005-2541", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2005-2541", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-48303", + "installedVersion": "1.34+dfsg-1", + "packageName": "tar", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0959", + "https://access.redhat.com/security/cve/CVE-2022-48303", + "https://bugzilla.redhat.com/2149722", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + "https://errata.almalinux.org/9/ALSA-2023-0959.html", + "https://errata.rockylinux.org/RLSA-2023:0959", + "https://linux.oracle.com/cve/CVE-2022-48303.html", + "https://linux.oracle.com/errata/ELSA-2023-0959.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + "https://savannah.gnu.org/bugs/?62387", + "https://savannah.gnu.org/patch/?10307", + "https://ubuntu.com/security/notices/USN-5900-1", + "https://ubuntu.com/security/notices/USN-5900-2", + "https://www.cve.org/CVERecord?id=CVE-2022-48303", + ], + }, + "category": "Vulnerability", + "description": "GNU Tar through 1.34 has a one-byte out-of-bounds read that results in use of uninitialized memory for a conditional jump. Exploitation to change the flow of control has not been demonstrated. The issue occurs in from_header in list.c via a V7 archive in which mtime has approximately 11 whitespace characters.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "heap buffer overflow at from_header() in list.c via specially crafted checksum", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-48303", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0959", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149722", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0959.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0959", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-48303.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0959.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/bugs/?62387", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/patch/?10307", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5900-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5900-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-48303", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1:1.2.11.dfsg-2+deb11u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-37434", + "installedVersion": "1:1.2.11.dfsg-2", + "packageName": "zlib1g", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/37", + "http://seclists.org/fulldisclosure/2022/Oct/38", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/42", + "http://www.openwall.com/lists/oss-security/2022/08/05/2", + "http://www.openwall.com/lists/oss-security/2022/08/09/1", + "https://access.redhat.com/errata/RHSA-2022:8291", + "https://access.redhat.com/security/cve/CVE-2022-37434", + "https://bugzilla.redhat.com/2116639", + "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + "https://errata.almalinux.org/9/ALSA-2022-8291.html", + "https://errata.rockylinux.org/RLSA-2022:8291", + "https://github.com/curl/curl/issues/9271", + "https://github.com/ivd38/zlib_overflow", + "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + "https://linux.oracle.com/cve/CVE-2022-37434.html", + "https://linux.oracle.com/errata/ELSA-2023-1095.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + "https://security.netapp.com/advisory/ntap-20220901-0005/", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://support.apple.com/kb/HT213488", + "https://support.apple.com/kb/HT213489", + "https://support.apple.com/kb/HT213490", + "https://support.apple.com/kb/HT213491", + "https://support.apple.com/kb/HT213493", + "https://support.apple.com/kb/HT213494", + "https://ubuntu.com/security/notices/USN-5570-1", + "https://ubuntu.com/security/notices/USN-5570-2", + "https://ubuntu.com/security/notices/USN-5573-1", + "https://www.cve.org/CVERecord?id=CVE-2022-37434", + "https://www.debian.org/security/2022/dsa-5218", + ], + }, + "category": "Vulnerability", + "description": "zlib through 1.2.12 has a heap-based buffer over-read or buffer overflow in inflate in inflate.c via a large gzip header extra field. NOTE: only applications that call inflateGetHeader are affected. Some common applications bundle the affected zlib source code but may be unable to call inflateGetHeader (e.g., see the nodejs/node reference).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "heap-based buffer over-read and overflow in inflate() in inflate.c via a large gzip header extra field", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-37434", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/37", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/38", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/41", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/42", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/08/05/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/08/09/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8291", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2116639", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8291.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8291", + }, + { + "type": "URL", + "value": "https://github.com/curl/curl/issues/9271", + }, + { + "type": "URL", + "value": "https://github.com/ivd38/zlib_overflow", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + }, + { + "type": "URL", + "value": "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-37434.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-1095.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220901-0005/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0007/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213488", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213489", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213490", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213491", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213493", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213494", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5570-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5570-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5573-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5218", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1:1.2.11.dfsg-2+deb11u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-25032", + "installedVersion": "1:1.2.11.dfsg-2", + "packageName": "zlib1g", + "references": [ + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "http://www.openwall.com/lists/oss-security/2022/03/25/2", + "http://www.openwall.com/lists/oss-security/2022/03/26/1", + "https://access.redhat.com/errata/RHSA-2022:8420", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + "https://access.redhat.com/security/cve/CVE-2018-25032", + "https://bugzilla.redhat.com/2067945", + "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + "https://errata.almalinux.org/9/ALSA-2022-8420.html", + "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + "https://github.com/madler/zlib/issues/605", + "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + "https://linux.oracle.com/cve/CVE-2018-25032.html", + "https://linux.oracle.com/errata/ELSA-2022-9565.html", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + "https://security.gentoo.org/glsa/202210-42", + "https://security.netapp.com/advisory/ntap-20220526-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5355-1", + "https://ubuntu.com/security/notices/USN-5355-2", + "https://ubuntu.com/security/notices/USN-5359-1", + "https://ubuntu.com/security/notices/USN-5359-2", + "https://ubuntu.com/security/notices/USN-5739-1", + "https://www.cve.org/CVERecord?id=CVE-2018-25032", + "https://www.debian.org/security/2022/dsa-5111", + "https://www.openwall.com/lists/oss-security/2022/03/24/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/3", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "A flaw found in zlib when compressing (not decompressing) certain inputs", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-25032", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/33", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/35", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/38", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/03/25/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/03/26/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8420", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2067945", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8420.html", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/issues/605", + }, + { + "type": "URL", + "value": "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + }, + { + "type": "URL", + "value": "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2018-25032.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9565.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-42", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220526-0009/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0004/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213255", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213256", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213257", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5355-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5355-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5359-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5359-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5739-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5111", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/24/1", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/28/1", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/28/3", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.16.0+incompatible", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-1996", + "installedVersion": "v2.9.5+incompatible", + "packageName": "github.com/emicklei/go-restful", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-1996", + "https://github.com/advisories/GHSA-r48q-9g5r-8q2h", + "https://github.com/emicklei/go-restful/commit/926662532deb450272956c7bc573978464aae74e", + "https://github.com/emicklei/go-restful/commit/f292efff46ae17e9d104f865a60a39a2ae9402f1", + "https://github.com/emicklei/go-restful/commit/fd3c327a379ce08c68ef18765bdc925f5d9bad10", + "https://github.com/emicklei/go-restful/issues/489", + "https://huntr.dev/bounties/be837427-415c-4d8c-808b-62ce20aa84f1", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/575BLJ3Y2EQBRNTFR2OSQQ6L2W6UCST3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OBDD3Q23RCGAGHIXUCWBU6N3S4RNAKXB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SO5QC2JFW2PXBWAE27OYYYL5SPFUBHTY/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W56PP46JVZEKCANBKXFKRVSBBRRMCY6V/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZGQKWD6SE75PFBPFVSZYAKAVXKBZXKWS/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1996", + "https://pkg.go.dev/vuln/GO-2022-0619", + "https://security.netapp.com/advisory/ntap-20220923-0005/", + "https://www.cve.org/CVERecord?id=CVE-2022-1996", + ], + }, + "category": "Vulnerability", + "description": "Authorization Bypass Through User-Controlled Key in GitHub repository emicklei/go-restful prior to v3.8.0.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Authorization Bypass Through User-Controlled Key", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1996", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1996", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-r48q-9g5r-8q2h", + }, + { + "type": "URL", + "value": "https://github.com/emicklei/go-restful/commit/926662532deb450272956c7bc573978464aae74e", + }, + { + "type": "URL", + "value": "https://github.com/emicklei/go-restful/commit/f292efff46ae17e9d104f865a60a39a2ae9402f1", + }, + { + "type": "URL", + "value": "https://github.com/emicklei/go-restful/commit/fd3c327a379ce08c68ef18765bdc925f5d9bad10", + }, + { + "type": "URL", + "value": "https://github.com/emicklei/go-restful/issues/489", + }, + { + "type": "URL", + "value": "https://huntr.dev/bounties/be837427-415c-4d8c-808b-62ce20aa84f1", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/575BLJ3Y2EQBRNTFR2OSQQ6L2W6UCST3/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OBDD3Q23RCGAGHIXUCWBU6N3S4RNAKXB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SO5QC2JFW2PXBWAE27OYYYL5SPFUBHTY/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W56PP46JVZEKCANBKXFKRVSBBRRMCY6V/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZGQKWD6SE75PFBPFVSZYAKAVXKBZXKWS/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1996", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0619", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0005/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1996", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20220127200216-cd36cc0744dd", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20220127200216-cd36cc0744dd", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20220127200216-cd36cc0744dd", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220412211240-33da011f77ad", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29526", + "installedVersion": "v0.0.0-20220209214540-3681064d5158", + "packageName": "golang.org/x/sys", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526", + ], + }, + "category": "Vulnerability", + "description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "faccessat checks wrong group", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29526", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/52313", + }, + { + "type": "URL", + "value": "https://go.dev/cl/399539", + }, + { + "type": "URL", + "value": "https://go.dev/cl/400074", + }, + { + "type": "URL", + "value": "https://go.dev/issue/52313", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29526.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5337.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0493", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29526", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.7", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.0.0-20220521103104-8f96da9f5d5e", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-28948", + "installedVersion": "v3.0.0-20210107192922-496545a6307b", + "packageName": "gopkg.in/yaml.v3", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-28948", + "https://github.com/advisories/GHSA-hp87-p4gw-j4gq", + "https://github.com/go-yaml/yaml/commit/8f96da9f5d5eff988554c1aae1784627c4bf6754", + "https://github.com/go-yaml/yaml/issues/666", + "https://nvd.nist.gov/vuln/detail/CVE-2022-28948", + "https://security.netapp.com/advisory/ntap-20220923-0006/", + "https://www.cve.org/CVERecord?id=CVE-2022-28948", + ], + }, + "category": "Vulnerability", + "description": "An issue in the Unmarshal function in Go-Yaml v3 causes the program to crash when attempting to deserialize invalid input.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "crash when attempting to deserialize invalid input", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-28948", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-28948", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-hp87-p4gw-j4gq", + }, + { + "type": "URL", + "value": "https://github.com/go-yaml/yaml/commit/8f96da9f5d5eff988554c1aae1784627c4bf6754", + }, + { + "type": "URL", + "value": "https://github.com/go-yaml/yaml/issues/666", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-28948", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0006/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-28948", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'kindnet-cni' of DaemonSet 'kindnet' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV009", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009", + ], + }, + "category": "Misconfiguration", + "description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Do not set 'spec.template.spec.hostNetwork' to true.", + "name": "Access to host network(DaemonSet 'kindnet' should not set 'spec.template.spec.hostNetwork' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv009", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV022", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv022", + ], + }, + "category": "Misconfiguration", + "description": "Adding NET_RAW or capabilities beyond the default set must be disallowed.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Do not set spec.containers[*].securityContext.capabilities.add and spec.initContainers[*].securityContext.capabilities.add", + "name": "Non-default capabilities added(Container 'kindnet-cni' of DaemonSet 'kindnet' should not set 'securityContext.capabilities.add')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv022", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV023", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023", + ], + }, + "category": "Misconfiguration", + "description": "HostPath volumes must be forbidden.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Do not set 'spec.volumes[*].hostPath'.", + "name": "hostPath volumes mounted(DaemonSet 'kindnet' should not set 'spec.template.volumes.hostPath')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv023", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "3.1.1-r0", + "foundIn": "Target: 'docker.io/aquasec/trivy:0.42.0 (alpine 3.18.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2023-2650", + "installedVersion": "3.1.0-r4", + "packageName": "libcrypto3", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.1.1-r0", + "foundIn": "Target: 'docker.io/aquasec/trivy:0.42.0 (alpine 3.18.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2023-2650", + "installedVersion": "3.1.0-r4", + "packageName": "libssl3", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'usr/local/bin/trivy' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-8911", + "installedVersion": "v1.44.245", + "packageName": "github.com/aws/aws-sdk-go", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-8911", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869800", + "https://github.com/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8911", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8911", + ], + }, + "category": "Vulnerability", + "description": "A padding oracle vulnerability exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. The SDK allows users to encrypt files with AES-CBC without computing a Message Authentication Code (MAC), which then allows an attacker who has write access to the target's S3 bucket and can observe whether or not an endpoint with access to the key can decrypt a file, they can reconstruct the plaintext with (on average) 128*length (plaintext) queries to the endpoint, by exploiting CBC's ability to manipulate the bytes of the next block and PKCS5 padding errors. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": undefined, + "name": "aws/aws-sdk-go: CBC padding oracle issue in AWS S3 Crypto SDK for golang", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-8911", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-8911", + }, + { + "type": "URL", + "value": "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1869800", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-f5pg-7wfw-84q9", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/pull/3403", + }, + { + "type": "URL", + "value": "https://github.com/google/security-research/security/advisories/GHSA-f5pg-7wfw-84q9", + }, + { + "type": "URL", + "value": "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-8911", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0646", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-8911", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'usr/local/bin/trivy' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-8912", + "installedVersion": "v1.44.245", + "packageName": "github.com/aws/aws-sdk-go", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-8912", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869801", + "https://github.com/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8912", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8912", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability in the in-band key negotiation exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. An attacker with write access to the targeted bucket can change the encryption algorithm of an object in the bucket, which can then allow them to change AES-GCM to AES-CTR. Using this in combination with a decryption oracle can reveal the authentication key used by AES-GCM as decrypting the GMAC tag leaves the authentication key recoverable as an algebraic equation. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": undefined, + "name": "aws-sdk-go: In-band key negotiation issue in AWS S3 Crypto SDK for golang", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-8912", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-8912", + }, + { + "type": "URL", + "value": "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1869801", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-7f33-f4f5-xwgw", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/pull/3403", + }, + { + "type": "URL", + "value": "https://github.com/google/security-research/security/advisories/GHSA-7f33-f4f5-xwgw", + }, + { + "type": "URL", + "value": "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-8912", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0646", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-8912", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV015", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015", + ], + }, + "category": "Misconfiguration", + "description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Set 'containers[].resources.requests.cpu'.", + "name": "CPU requests not specified(Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'resources.requests.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv015", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'lurker' of Job 'scan-trivy-k8s-kvmnm' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'lurker' of Job 'scan-trivy-k8s-kvmnm' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-kvmnm' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-kvmnm'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ConfigMap/extension-apiserver-authentication' / Class: 'config' / Type: 'kubernetes'", + "id": "AVD-KSV-0110", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://avd.aquasec.com/misconfig/avd-ksv-0110", + ], + }, + "category": "Misconfiguration", + "description": "Storing sensitive content such as usernames and email addresses in configMaps is unsafe", + "location": "Namespace: 'kube-system' / Kind: 'ConfigMap' / Name: 'extension-apiserver-authentication'", + "mitigation": "Remove sensitive content from configMap data value", + "name": "ConfigMap with sensitive content(ConfigMap 'extension-apiserver-authentication' in 'kube-system' namespace stores sensitive contents in key(s) or value(s) '{"requestheader-username-headers"}')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/avd-ksv-0110", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/system:controller:bootstrap-signer' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Namespace: 'kube-public' / Kind: 'Role' / Name: 'system:controller:bootstrap-signer'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(Role 'system:controller:bootstrap-signer' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/system::leader-locking-kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Namespace: 'kube-system' / Kind: 'Role' / Name: 'system::leader-locking-kube-controller-manager'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(Role 'system::leader-locking-kube-controller-manager' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/system::leader-locking-kube-scheduler' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Namespace: 'kube-system' / Kind: 'Role' / Name: 'system::leader-locking-kube-scheduler'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(Role 'system::leader-locking-kube-scheduler' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/system:controller:cloud-provider' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Namespace: 'kube-system' / Kind: 'Role' / Name: 'system:controller:cloud-provider'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(Role 'system:controller:cloud-provider' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/system:controller:bootstrap-signer' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Namespace: 'kube-system' / Kind: 'Role' / Name: 'system:controller:bootstrap-signer'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/leader-election-role' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Role' / Name: 'leader-election-role'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(Role 'leader-election-role' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/system:controller:token-cleaner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Namespace: 'kube-system' / Kind: 'Role' / Name: 'system:controller:token-cleaner'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/cluster-admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV044", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv044", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits wildcard verb on wildcard resource", + "location": "Kind: 'ClusterRole' / Name: 'cluster-admin'", + "mitigation": "Create a role which does not permit wildcard verb on wildcard resource", + "name": "No wildcard verb and resource roles(Role permits wildcard verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv044", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/cluster-admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV046", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits specific verb on wildcard resources", + "location": "Kind: 'ClusterRole' / Name: 'cluster-admin'", + "mitigation": "Create a role which does not permit specific verb on wildcard resources", + "name": "No wildcard resource roles(Role permits specific verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv046", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(ClusterRole 'admin' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV050", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050", + ], + }, + "category": "Misconfiguration", + "description": "An effective level of access equivalent to cluster-admin should not be provided.", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "name": "Do not allow management of RBAC resources(ClusterRole 'admin' should not have access to resources ["roles", "rolebindings"] for verbs ["create", "update", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv050", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'admin' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'admin' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'admin' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(ClusterRole 'edit' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'edit' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'edit' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'edit' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/manager-role' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'manager-role'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/manager-role' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV050", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050", + ], + }, + "category": "Misconfiguration", + "description": "An effective level of access equivalent to cluster-admin should not be provided.", + "location": "Kind: 'ClusterRole' / Name: 'manager-role'", + "mitigation": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "name": "Do not allow management of RBAC resources(ClusterRole 'manager-role' should not have access to resources ["roles", "rolebindings"] for verbs ["create", "update", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv050", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/manager-role' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV050", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050", + ], + }, + "category": "Misconfiguration", + "description": "An effective level of access equivalent to cluster-admin should not be provided.", + "location": "Kind: 'ClusterRole' / Name: 'manager-role'", + "mitigation": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "name": "Do not allow management of RBAC resources(ClusterRole 'manager-role' should not have access to resources ["roles", "rolebindings"] for verbs ["create", "update", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv050", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/local-path-provisioner-role' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV045", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv045", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits wildcard verb on specific resources", + "location": "Kind: 'ClusterRole' / Name: 'local-path-provisioner-role'", + "mitigation": "Create a role which does not permit wildcard verb on specific resources", + "name": "No wildcard verb roles(Role permits wildcard verb on specific resources)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv045", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/local-path-provisioner-role' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'local-path-provisioner-role'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'local-path-provisioner-role' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV050", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050", + ], + }, + "category": "Misconfiguration", + "description": "An effective level of access equivalent to cluster-admin should not be provided.", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-admin'", + "mitigation": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "name": "Do not allow management of RBAC resources(ClusterRole 'system:aggregate-to-admin' should not have access to resources ["roles", "rolebindings"] for verbs ["create", "update", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv050", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(ClusterRole 'system:aggregate-to-edit' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:aggregate-to-edit' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:aggregate-to-edit' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:aggregate-to-edit' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:cronjob-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:cronjob-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:cronjob-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:cronjob-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:deployment-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:deployment-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:deployment-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:deployment-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:endpoint-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:endpoint-controller'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:controller:endpoint-controller' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:endpointslice-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:endpointslice-controller'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:controller:endpointslice-controller' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:endpointslicemirroring-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:endpointslicemirroring-controller'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:controller:endpointslicemirroring-controller' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:generic-garbage-collector' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV046", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits specific verb on wildcard resources", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:generic-garbage-collector'", + "mitigation": "Create a role which does not permit specific verb on wildcard resources", + "name": "No wildcard resource roles(Role permits specific verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv046", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:expand-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:expand-controller'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:horizontal-pod-autoscaler' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV046", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits specific verb on wildcard resources", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:horizontal-pod-autoscaler'", + "mitigation": "Create a role which does not permit specific verb on wildcard resources", + "name": "No wildcard resource roles(Role permits specific verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv046", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:horizontal-pod-autoscaler' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV046", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits specific verb on wildcard resources", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:horizontal-pod-autoscaler'", + "mitigation": "Create a role which does not permit specific verb on wildcard resources", + "name": "No wildcard resource roles(Role permits specific verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv046", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:job-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:job-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:namespace-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV046", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits specific verb on wildcard resources", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:namespace-controller'", + "mitigation": "Create a role which does not permit specific verb on wildcard resources", + "name": "No wildcard resource roles(Role permits specific verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv046", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:persistent-volume-binder' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:persistent-volume-binder'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:persistent-volume-binder' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:persistent-volume-binder'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:controller:persistent-volume-binder' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:persistent-volume-binder' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:persistent-volume-binder'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:controller:persistent-volume-binder' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:replicaset-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:replicaset-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:resourcequota-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV046", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits specific verb on wildcard resources", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:resourcequota-controller'", + "mitigation": "Create a role which does not permit specific verb on wildcard resources", + "name": "No wildcard resource roles(Role permits specific verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv046", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:replication-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:replication-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:root-ca-cert-publisher' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:root-ca-cert-publisher'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(ClusterRole 'system:controller:root-ca-cert-publisher' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV046", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits specific verb on wildcard resources", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Create a role which does not permit specific verb on wildcard resources", + "name": "No wildcard resource roles(Role permits specific verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv046", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:kube-controller-manager' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:kube-controller-manager' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-scheduler' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-scheduler'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:kube-scheduler' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-scheduler' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-scheduler'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:kube-scheduler' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:node' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:node'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRoleBinding/trivy-k8s' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV111", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv111", + ], + }, + "category": "Misconfiguration", + "description": "The RBAC role cluster-admin provides wide-ranging powers over the environment and should be used only where and when needed.", + "location": "Kind: 'ClusterRoleBinding' / Name: 'trivy-k8s'", + "mitigation": "Identify all clusterrolebindings to the cluster-admin role. Check if they are used and if they need this role or if they could use a role with fewer privileges.", + "name": "Ensure that the cluster-admin role is only used where required(ClusterRoleBinding 'trivy-k8s' with role 'cluster-admin' should be used only when required)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv111", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'NodeInfo/kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0056", + ], + }, + "category": "Misconfiguration", + "description": "Ensure that the container network interface file has permissions of 600 or more restrictive.", + "location": "Kind: 'NodeInfo' / Name: 'kind-control-plane'", + "mitigation": "Change the container network interface file path/to/cni/files permissions of 600 or more restrictive ", + "name": "Ensure that the container network interface file permissions are set to 600 or more restrictive(Ensure that the Container Network Interface specification file permissions is set to 600 or more restrictive)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0056", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'NodeInfo/kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0059", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0059", + ], + }, + "category": "Misconfiguration", + "description": "Ensure that the etcd data directory ownership is set to etcd:etcd.", + "location": "Kind: 'NodeInfo' / Name: 'kind-control-plane'", + "mitigation": "Change the etcd data directory /var/lib/etcd ownership to etcd:etcd", + "name": "Ensure that the etcd data directory ownership is set to etcd:etcd(Ensure that the etcd data directory ownership is set to etcd:etcd)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0059", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'NodeInfo/kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0068", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0068", + ], + }, + "category": "Misconfiguration", + "description": "Ensure that the Kubernetes PKI certificate file permission is set to 600.", + "location": "Kind: 'NodeInfo' / Name: 'kind-control-plane'", + "mitigation": "Change the Kubernetes PKI certificate file /etc/kubernetes/pki/*.crt permission to 600", + "name": "Ensure that the Kubernetes PKI certificate file permission is set to 600(Ensure that the Kubernetes PKI certificate file permission is set to 600)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0068", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'NodeInfo/kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0069", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0069", + ], + }, + "category": "Misconfiguration", + "description": "Ensure that the kubelet service file has permissions of 600 or more restrictive.", + "location": "Kind: 'NodeInfo' / Name: 'kind-control-plane'", + "mitigation": "Change the kubelet service file /etc/systemd/system/kubelet.service.d/10-kubeadm.conf permissions of 600 or more restrictive ", + "name": "Ensure that the kubelet service file permissions are set to 600 or more restrictive(Ensure that the kubelet service file permissions are set to 600 or more restrictive)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0069", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'NodeInfo/kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0075", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0075", + ], + }, + "category": "Misconfiguration", + "description": "Ensure that the certificate authorities file has permissions of 600 or more restrictive.", + "location": "Kind: 'NodeInfo' / Name: 'kind-control-plane'", + "mitigation": "Change the certificate authorities file permissions to 600 or more restrictive if exist", + "name": "Ensure that the certificate authorities file permissions are set to 600 or more restrictive(Ensure that the certificate authorities file permissions are set to 600 or more restrictive)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0075", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'NodeInfo/kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0077", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0077", + ], + }, + "category": "Misconfiguration", + "description": "Ensure that if the kubelet refers to a configuration file with the --config argument, that file has permissions of 600 or more restrictive.", + "location": "Kind: 'NodeInfo' / Name: 'kind-control-plane'", + "mitigation": "Change the kubelet config yaml permissions to 600 or more restrictive if exist", + "name": "If the kubelet config.yaml configuration file is being used validate permissions set to 600 or more restrictive(Ensure that if the kubelet refers to a configuration file with the --config argument, that file has permissions of 600 or more restrictive.)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0077", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "HIGH", + }, +] +`; + +exports[`should parse a trivy-k8s scan result of a cluster running secureCodeBox itself 1`] = ` +[ + { + "attributes": { + "fixedVersion": "2.10.7-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-36159", + "installedVersion": "2.10.5-r1", + "packageName": "apk-tools", + "references": [ + "https://github.com/freebsd/freebsd-src/commits/main/lib/libfetch", + "https://gitlab.alpinelinux.org/alpine/apk-tools/-/issues/10749", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cusers.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cusers.kafka.apache.org%3E", + ], + }, + "category": "Vulnerability", + "description": "libfetch before 2021-07-26, as used in apk-tools, xbps, and other products, mishandles numeric strings for the FTP and HTTP protocols. The FTP passive mode implementation allows an out-of-bounds read because strtol is used to parse the relevant numbers into address bytes. It does not check if the line ends prematurely. If it does, the for-loop condition checks for the '\\0' terminator one byte too late.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "Finding in Dependency apk-tools (2.10.5-r1)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36159", + }, + { + "type": "URL", + "value": "https://github.com/freebsd/freebsd-src/commits/main/lib/libfetch", + }, + { + "type": "URL", + "value": "https://gitlab.alpinelinux.org/alpine/apk-tools/-/issues/10749", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cdev.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cusers.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cdev.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cusers.kafka.apache.org%3E", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.10.6-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-30139", + "installedVersion": "2.10.5-r1", + "packageName": "apk-tools", + "references": [ + "https://gitlab.alpinelinux.org/alpine/apk-tools/-/issues/10741", + "https://gitlab.alpinelinux.org/alpine/aports/-/issues/12606", + ], + }, + "category": "Vulnerability", + "description": "In Alpine Linux apk-tools before 2.12.5, the tarball parser allows a buffer overflow and crash.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "Finding in Dependency apk-tools (2.10.5-r1)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-30139", + }, + { + "type": "URL", + "value": "https://gitlab.alpinelinux.org/alpine/apk-tools/-/issues/10741", + }, + { + "type": "URL", + "value": "https://gitlab.alpinelinux.org/alpine/aports/-/issues/12606", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r20", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-28831", + "installedVersion": "1.31.1-r16", + "packageName": "busybox", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-28831", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28831", + "https://git.busybox.net/busybox/commit/?id=f25d254dfd4243698c31a4f3153d4ac72aa9e9bd", + "https://lists.debian.org/debian-lts-announce/2021/04/msg00001.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UDQGJRECXFS5EZVDH2OI45FMO436AC4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z7ZIFKPRR32ZYA3WAA2NXFA3QHHOU6FJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZASBW7QRRLY5V2R44MQ4QQM4CZIDHM2U/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-28831", + "https://security.gentoo.org/glsa/202105-09", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://ubuntu.com/security/notices/USN-5179-2", + "https://www.cve.org/CVERecord?id=CVE-2021-28831", + ], + }, + "category": "Vulnerability", + "description": "decompress_gunzip.c in BusyBox through 1.32.1 mishandles the error bit on the huft_build result pointer, with a resultant invalid free or segmentation fault, via malformed gzip data.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: invalid free or segmentation fault via malformed gzip data", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-28831", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-28831", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28831", + }, + { + "type": "URL", + "value": "https://git.busybox.net/busybox/commit/?id=f25d254dfd4243698c31a4f3153d4ac72aa9e9bd", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/04/msg00001.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UDQGJRECXFS5EZVDH2OI45FMO436AC4/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z7ZIFKPRR32ZYA3WAA2NXFA3QHHOU6FJ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZASBW7QRRLY5V2R44MQ4QQM4CZIDHM2U/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-28831", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202105-09", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-28831", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42378", + "installedVersion": "1.31.1-r16", + "packageName": "busybox", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42378", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42378", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42378", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42378", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_i function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_i()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42378", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42378", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42378", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42378", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42378", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42379", + "installedVersion": "1.31.1-r16", + "packageName": "busybox", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42379", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42379", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42379", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42379", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the next_input_file function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the next_input_file()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42379", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42379", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42379", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42379", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42379", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42380", + "installedVersion": "1.31.1-r16", + "packageName": "busybox", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42380", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42380", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42380", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42380", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the clrvar function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the clrvar()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42380", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42380", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42380", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42380", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42380", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42381", + "installedVersion": "1.31.1-r16", + "packageName": "busybox", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42381", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42381", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42381", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42381", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the hash_init function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the hash_init()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42381", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42381", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42381", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42381", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42381", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42382", + "installedVersion": "1.31.1-r16", + "packageName": "busybox", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42382", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42382", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42382", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42382", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_s function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_s()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42382", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42382", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42382", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42382", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42382", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42383", + "installedVersion": "1.31.1-r16", + "packageName": "busybox", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42383", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42383", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-42383", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42383", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42383", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42383", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42384", + "installedVersion": "1.31.1-r16", + "packageName": "busybox", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42384", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42384", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42384", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42384", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the handle_special function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the handle_special()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42384", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42384", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42384", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42384", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42384", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42385", + "installedVersion": "1.31.1-r16", + "packageName": "busybox", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42385", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42385", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42385", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42385", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42385", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42385", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42385", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42385", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42385", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42386", + "installedVersion": "1.31.1-r16", + "packageName": "busybox", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42386", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42386", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42386", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42386", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the nvalloc function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the nvalloc()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42386", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42386", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42386", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42386", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42386", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r22", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2022-28391", + "installedVersion": "1.31.1-r16", + "packageName": "busybox", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-28391", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28391", + "https://git.alpinelinux.org/aports/plain/main/busybox/0001-libbb-sockaddr2str-ensure-only-printable-characters-.patch", + "https://git.alpinelinux.org/aports/plain/main/busybox/0002-nslookup-sanitize-all-printed-strings-with-printable.patch", + "https://gitlab.alpinelinux.org/alpine/aports/-/issues/13661", + "https://nvd.nist.gov/vuln/detail/CVE-2022-28391", + "https://www.cve.org/CVERecord?id=CVE-2022-28391", + ], + }, + "category": "Vulnerability", + "description": "BusyBox through 1.35.0 allows remote attackers to execute arbitrary code if netstat is used to print a DNS PTR record's value to a VT compatible terminal. Alternatively, the attacker could choose to change the terminal's colors.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: remote attackers may execute arbitrary code if netstat is used", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-28391", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-28391", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28391", + }, + { + "type": "URL", + "value": "https://git.alpinelinux.org/aports/plain/main/busybox/0001-libbb-sockaddr2str-ensure-only-printable-characters-.patch", + }, + { + "type": "URL", + "value": "https://git.alpinelinux.org/aports/plain/main/busybox/0002-nslookup-sanitize-all-printed-strings-with-printable.patch", + }, + { + "type": "URL", + "value": "https://gitlab.alpinelinux.org/alpine/aports/-/issues/13661", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-28391", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-28391", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42374", + "installedVersion": "1.31.1-r16", + "packageName": "busybox", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42374", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42374", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42374", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42374", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds heap read in Busybox's unlzma applet leads to information leak and denial of service when crafted LZMA-compressed input is decompressed. This can be triggered by any applet/format that", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: out-of-bounds read in unlzma applet leads to information leak and denial of service when crafted LZMA-compressed input is decompressed", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42374", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42374", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42374", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42374", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42374", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1l-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-3711", + "installedVersion": "1.1.1g-r0", + "packageName": "libcrypto1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/security/cve/CVE-2021-3711", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3711", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + "https://github.com/advisories/GHSA-5ww6-px42-wc85", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + "https://rustsec.org/advisories/RUSTSEC-2021-0097.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://security.netapp.com/advisory/ntap-20211022-0003/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3711", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02", + ], + }, + "category": "Vulnerability", + "description": "In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the "out" parameter can be NULL and, on exit, the "outlen" parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the "out" parameter. A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small. A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer by up to a maximum of 62 bytes altering the contents of other data held after the buffer, possibly changing application behaviour or causing the application to crash. The location of the buffer is application dependent but is typically heap allocated. Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: SM2 Decryption Buffer Overflow", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3711", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/26/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-5ww6-px42-wc85", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0097.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-02", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210827-0010/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211022-0003/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4963", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210824.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-16", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-02", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1j-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-23840", + "installedVersion": "1.1.1g-r0", + "packageName": "libcrypto1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-23840", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23840", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "https://github.com/advisories/GHSA-qgm6-9472-pwq7", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-23840.html", + "https://linux.oracle.com/errata/ELSA-2021-9561.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23840", + "https://rustsec.org/advisories/RUSTSEC-2021-0057.html", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://ubuntu.com/security/notices/USN-4738-1", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-23840", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10", + ], + }, + "category": "Vulnerability", + "description": "Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate may overflow the output length argument in some cases where the input length is close to the maximum permissable length for an integer on the platform. In such cases the return value from the function call will be 1 (indicating success), but the output length value will be negative. This could cause applications to behave incorrectly or crash. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: integer overflow in CipherUpdate", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-23840", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-23840", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23840", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-qgm6-9472-pwq7", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-23840.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9561.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-23840", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0057.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202103-03", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210219-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4738-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5088-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-23840", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4855", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210216.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-03", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-09", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-10", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1k-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-3450", + "installedVersion": "1.1.1g-r0", + "packageName": "libcrypto1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/03/27/1", + "http://www.openwall.com/lists/oss-security/2021/03/27/2", + "http://www.openwall.com/lists/oss-security/2021/03/28/3", + "http://www.openwall.com/lists/oss-security/2021/03/28/4", + "https://access.redhat.com/security/cve/CVE-2021-3450", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2a40b7bc7b94dd7de897a74571e7024f0cf0d63b", + "https://github.com/advisories/GHSA-8hfj-xrj2-pm22", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10356", + "https://linux.oracle.com/cve/CVE-2021-3450.html", + "https://linux.oracle.com/errata/ELSA-2021-9151.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + "https://mta.openssl.org/pipermail/openssl-announce/2021-March/000198.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3450", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + "https://rustsec.org/advisories/RUSTSEC-2021-0056.html", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210326-0006/", + "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + "https://www.cve.org/CVERecord?id=CVE-2021-3450", + "https://www.openssl.org/news/secadv/20210325.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-05", + "https://www.tenable.com/security/tns-2021-08", + "https://www.tenable.com/security/tns-2021-09", + ], + }, + "category": "Vulnerability", + "description": "The X509_V_FLAG_X509_STRICT flag enables additional security checks of the certificates present in a certificate chain. It is not set by default. Starting from OpenSSL version 1.1.1h a check to disallow certificates in the chain that have explicitly encoded elliptic curve parameters was added as an additional strict check. An error in the implementation of this check meant that the result of a previous check to confirm that certificates in the chain are valid CA certificates was overwritten. This effectively bypasses the check that non-CA certificates must not be able to issue other certificates. If a "purpose" has been configured then there is a subsequent opportunity for checks that the certificate is a valid CA. All of the named "purpose" values implemented in libcrypto perform this check. Therefore, where a purpose is set the certificate chain will still be rejected even when the strict flag has been used. A purpose is set by default in libssl client and server certificate verification routines, but it can be overridden or removed by an application. In order to be affected, an application must explicitly set the X509_V_FLAG_X509_STRICT verification flag and either not set a purpose for the certificate verification or, in the case of TLS client or server applications, override the default purpose. OpenSSL versions 1.1.1h and newer are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1h-1.1.1j).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: CA certificate check bypass with X509_V_FLAG_X509_STRICT", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3450", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/27/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/27/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/28/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/28/4", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3450", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2a40b7bc7b94dd7de897a74571e7024f0cf0d63b", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-8hfj-xrj2-pm22", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10356", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3450.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9151.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + }, + { + "type": "URL", + "value": "https://mta.openssl.org/pipermail/openssl-announce/2021-March/000198.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3450", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0056.html", + }, + { + "type": "URL", + "value": "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202103-03", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210326-0006/", + }, + { + "type": "URL", + "value": "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3450", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210325.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-05", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-08", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-09", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1l-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-3712", + "installedVersion": "1.1.1g-r0", + "packageName": "libcrypto1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3712.json", + "https://access.redhat.com/security/cve/CVE-2021-3712", + "https://cert-portal.siemens.com/productcert/pdf/ssa-244969.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3712", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=94d23fcff9b2a7a8368dfe52214d5c2569882c11", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + "https://github.com/advisories/GHSA-q9wj-f4qw-6vfj", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-3712.html", + "https://linux.oracle.com/errata/ELSA-2022-9023.html", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00014.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", + "https://rustsec.org/advisories/RUSTSEC-2021-0098.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://ubuntu.com/security/notices/USN-5051-2", + "https://ubuntu.com/security/notices/USN-5051-3", + "https://ubuntu.com/security/notices/USN-5051-4 (regression only in trusty/esm)", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3712", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02", + ], + }, + "category": "Vulnerability", + "description": "ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own "d2i" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the "data" and "length" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though this is not guaranteed for strings that have been directly constructed. Where an application requests an ASN.1 structure to be printed, and where that ASN.1 structure contains ASN1_STRINGs that have been directly constructed by the application without NUL terminating the "data" field, then a read buffer overrun can occur. The same thing can also occur during name constraints processing of certificates (for example if a certificate has been directly constructed by the application instead of loading it via the OpenSSL parsing functions, and the certificate contains non NUL terminated ASN1_STRING structures). It can also occur in the X509_get1_email(), X509_REQ_get1_email() and X509_get1_ocsp() functions. If a malicious actor can cause an application to directly construct an ASN1_STRING and then process it through one of the affected OpenSSL functions then this issue could be hit. This might result in a crash (causing a Denial of Service attack). It could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext). Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k). Fixed in OpenSSL 1.0.2za (Affected 1.0.2-1.0.2y).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: Read buffer overruns processing ASN.1 strings", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3712", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/26/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3712.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-244969.pdf", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=94d23fcff9b2a7a8368dfe52214d5c2569882c11", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-q9wj-f4qw-6vfj", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3712.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9023.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0098.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-02", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210827-0010/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-4 (regression only in trusty/esm)", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5088-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4963", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210824.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-16", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-02", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2022-0778", + "installedVersion": "1.1.1g-r0", + "packageName": "libcrypto1.1", + "references": [ + "http://packetstormsecurity.com/files/167344/OpenSSL-1.0.2-1.1.1-3.0-BN_mod_sqrt-Infinite-Loop.html", + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "https://access.redhat.com/errata/RHSA-2022:5326", + "https://access.redhat.com/security/cve/CVE-2022-0778", + "https://bugzilla.redhat.com/2062202", + "https://bugzilla.redhat.com/show_bug.cgi?id=2062202", + "https://cert-portal.siemens.com/productcert/pdf/ssa-712929.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0778", + "https://errata.almalinux.org/8/ALSA-2022-5326.html", + "https://errata.rockylinux.org/RLSA-2022:4899", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3118eb64934499d93db3230748a452351d1d9a65", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=380085481c64de749a6dd25cdf0bcf4360b30f83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a466912611aa6cbdf550cd10601390e587451246", + "https://github.com/advisories/GHSA-x3mh-jvjw-3xwx", + "https://linux.oracle.com/cve/CVE-2022-0778.html", + "https://linux.oracle.com/errata/ELSA-2022-9272.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00024.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/323SNN6ZX7PRJJWP2BUAFLPUAE42XWLZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GDB3GQVJPXJE7X5C5JN6JAA4XUDWD6E6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W6K3PR542DXWLEFFMFIDMME4CWMHJRMG/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0002", + "https://rustsec.org/advisories/RUSTSEC-2022-0014.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220321-0002/", + "https://security.netapp.com/advisory/ntap-20220429-0005/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5328-1", + "https://ubuntu.com/security/notices/USN-5328-2", + "https://www.cve.org/CVERecord?id=CVE-2022-0778", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220315.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.tenable.com/security/tns-2022-06", + "https://www.tenable.com/security/tns-2022-07", + "https://www.tenable.com/security/tns-2022-08", + "https://www.tenable.com/security/tns-2022-09", + ], + }, + "category": "Vulnerability", + "description": "The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: Infinite loop in BN_mod_sqrt() reachable when parsing certificates", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0778", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/167344/OpenSSL-1.0.2-1.1.1-3.0-BN_mod_sqrt-Infinite-Loop.html", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/33", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/35", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/38", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:5326", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2062202", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2062202", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-712929.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2022-5326.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:4899", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3118eb64934499d93db3230748a452351d1d9a65", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=380085481c64de749a6dd25cdf0bcf4360b30f83", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a466912611aa6cbdf550cd10601390e587451246", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-x3mh-jvjw-3xwx", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-0778.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9272.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/03/msg00024.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/323SNN6ZX7PRJJWP2BUAFLPUAE42XWLZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GDB3GQVJPXJE7X5C5JN6JAA4XUDWD6E6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W6K3PR542DXWLEFFMFIDMME4CWMHJRMG/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0002", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2022-0014.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220321-0002/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220429-0005/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213255", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213256", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213257", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5328-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5328-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5103", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220315.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-06", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-07", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-08", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-09", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1i-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2020-1971", + "installedVersion": "1.1.1g-r0", + "packageName": "libcrypto1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/09/14/2", + "https://access.redhat.com/security/cve/CVE-2020-1971", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1971", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2154ab83e14ede338d2ede9bbe5cdfce5d5a6c9e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=f960d81215ebf3f65e03d4d5d857fb9b666d6920", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44676", + "https://linux.oracle.com/cve/CVE-2020-1971.html", + "https://linux.oracle.com/errata/ELSA-2021-9150.html", + "https://lists.apache.org/thread.html/r63c6f2dd363d9b514d0a4bcf624580616a679898cc14c109a49b750c@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rbb769f771711fb274e0a4acb1b5911c8aab544a6ac5e8c12d40c5143@%3Ccommits.pulsar.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2020/12/msg00020.html", + "https://lists.debian.org/debian-lts-announce/2020/12/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DGSI34Y5LQ5RYXN4M2I5ZQT65LFVDOUU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/PWPSSZNZOBJU2YR6Z4TGHXKYW3YP5QG7/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1971", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-20:33.openssl.asc", + "https://security.gentoo.org/glsa/202012-13", + "https://security.netapp.com/advisory/ntap-20201218-0005/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://ubuntu.com/security/notices/USN-4662-1", + "https://ubuntu.com/security/notices/USN-4745-1", + "https://www.cve.org/CVERecord?id=CVE-2020-1971", + "https://www.debian.org/security/2020/dsa-4807", + "https://www.openssl.org/news/secadv/20201208.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2021.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2020-11", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10", + ], + }, + "category": "Vulnerability", + "description": "The X.509 GeneralName type is a generic type for representing different types of names. One of those name types is known as EDIPartyName. OpenSSL provides a function GENERAL_NAME_cmp which compares different instances of a GENERAL_NAME to see if they are equal or not. This function behaves incorrectly when both GENERAL_NAMEs contain an EDIPARTYNAME. A NULL pointer dereference and a crash may occur leading to a possible denial of service attack. OpenSSL itself uses the GENERAL_NAME_cmp function for two purposes: 1) Comparing CRL distribution point names between an available CRL and a CRL distribution point embedded in an X509 certificate 2) When verifying that a timestamp response token signer matches the timestamp authority name (exposed via the API functions TS_RESP_verify_response and TS_RESP_verify_token) If an attacker can control both items being compared then that attacker could trigger a crash. For example if the attacker can trick a client or server into checking a malicious certificate against a malicious CRL then this may occur. Note that some applications automatically download CRLs based on a URL embedded in a certificate. This checking happens prior to the signatures on the certificate and CRL being verified. OpenSSL's s_server, s_client and verify tools have support for the "-crl_download" option which implements automatic CRL downloading and this attack has been demonstrated to work against those tools. Note that an unrelated bug means that affected versions of OpenSSL cannot parse or construct correct encodings of EDIPARTYNAME. However it is possible to construct a malformed EDIPARTYNAME that OpenSSL's parser will accept and hence trigger this attack. All OpenSSL 1.1.1 and 1.0.2 versions are affected by this issue. Other OpenSSL releases are out of support and have not been checked. Fixed in OpenSSL 1.1.1i (Affected 1.1.1-1.1.1h). Fixed in OpenSSL 1.0.2x (Affected 1.0.2-1.0.2w).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: EDIPARTYNAME NULL pointer de-reference", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-1971", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/14/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-1971", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1971", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2154ab83e14ede338d2ede9bbe5cdfce5d5a6c9e", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=f960d81215ebf3f65e03d4d5d857fb9b666d6920", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44676", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-1971.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9150.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r63c6f2dd363d9b514d0a4bcf624580616a679898cc14c109a49b750c@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rbb769f771711fb274e0a4acb1b5911c8aab544a6ac5e8c12d40c5143@%3Ccommits.pulsar.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2020/12/msg00020.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2020/12/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DGSI34Y5LQ5RYXN4M2I5ZQT65LFVDOUU/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/PWPSSZNZOBJU2YR6Z4TGHXKYW3YP5QG7/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-1971", + }, + { + "type": "URL", + "value": "https://security.FreeBSD.org/advisories/FreeBSD-SA-20:33.openssl.asc", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202012-13", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20201218-0005/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210513-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4662-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4745-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-1971", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2020/dsa-4807", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20201208.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2020-11", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-09", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-10", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1j-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-23841", + "installedVersion": "1.1.1g-r0", + "packageName": "libcrypto1.1", + "references": [ + "http://seclists.org/fulldisclosure/2021/May/67", + "http://seclists.org/fulldisclosure/2021/May/68", + "http://seclists.org/fulldisclosure/2021/May/70", + "https://access.redhat.com/security/cve/CVE-2021-23841", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23841", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "https://github.com/advisories/GHSA-84rm-qf37-fgc2", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://linux.oracle.com/cve/CVE-2021-23841.html", + "https://linux.oracle.com/errata/ELSA-2021-9561.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23841", + "https://rustsec.org/advisories/RUSTSEC-2021-0058", + "https://rustsec.org/advisories/RUSTSEC-2021-0058.html", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://support.apple.com/kb/HT212528", + "https://support.apple.com/kb/HT212529", + "https://support.apple.com/kb/HT212534", + "https://ubuntu.com/security/notices/USN-4738-1", + "https://ubuntu.com/security/notices/USN-4745-1", + "https://www.cve.org/CVERecord?id=CVE-2021-23841", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09", + ], + }, + "category": "Vulnerability", + "description": "The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: NULL pointer dereference in X509_issuer_and_serial_hash()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-23841", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/May/67", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/May/68", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/May/70", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-23841", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23841", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-84rm-qf37-fgc2", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-23841.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9561.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-23841", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0058", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0058.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202103-03", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210219-0009/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210513-0002/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212528", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212529", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212534", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4738-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4745-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-23841", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4855", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210216.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-03", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-09", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1k-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-3449", + "installedVersion": "1.1.1g-r0", + "packageName": "libcrypto1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/03/27/1", + "http://www.openwall.com/lists/oss-security/2021/03/27/2", + "http://www.openwall.com/lists/oss-security/2021/03/28/3", + "http://www.openwall.com/lists/oss-security/2021/03/28/4", + "https://access.redhat.com/security/cve/CVE-2021-3449", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-772220.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3449", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fb9fa6b51defd48157eeb207f52181f735d96148", + "https://github.com/advisories/GHSA-83mx-573x-5rw9", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10356", + "https://linux.oracle.com/cve/CVE-2021-3449.html", + "https://linux.oracle.com/errata/ELSA-2021-9151.html", + "https://lists.debian.org/debian-lts-announce/2021/08/msg00029.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3449", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + "https://rustsec.org/advisories/RUSTSEC-2021-0055", + "https://rustsec.org/advisories/RUSTSEC-2021-0055.html", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210326-0006/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + "https://ubuntu.com/security/notices/USN-4891-1", + "https://ubuntu.com/security/notices/USN-5038-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3449", + "https://www.debian.org/security/2021/dsa-4875", + "https://www.openssl.org/news/secadv/20210325.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-05", + "https://www.tenable.com/security/tns-2021-06", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10", + ], + }, + "category": "Vulnerability", + "description": "An OpenSSL TLS server may crash if sent a maliciously crafted renegotiation ClientHello message from a client. If a TLSv1.2 renegotiation ClientHello omits the signature_algorithms extension (where it was present in the initial ClientHello), but includes a signature_algorithms_cert extension then a NULL pointer dereference will result, leading to a crash and a denial of service attack. A server is only vulnerable if it has TLSv1.2 and renegotiation enabled (which is the default configuration). OpenSSL TLS clients are not impacted by this issue. All OpenSSL 1.1.1 versions are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1-1.1.1j).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: NULL pointer dereference in signature_algorithms processing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3449", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/27/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/27/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/28/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/28/4", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3449", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-772220.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3449", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fb9fa6b51defd48157eeb207f52181f735d96148", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-83mx-573x-5rw9", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10356", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3449.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9151.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/08/msg00029.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3449", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0055", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0055.html", + }, + { + "type": "URL", + "value": "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202103-03", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210326-0006/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210513-0002/", + }, + { + "type": "URL", + "value": "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4891-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3449", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4875", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210325.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-05", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-06", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-09", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-10", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1j-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-23839", + "installedVersion": "1.1.1g-r0", + "packageName": "libcrypto1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-23839", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=30919ab80a478f2d81f2e9acdcca3fa4740cd547", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23839", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://www.cve.org/CVERecord?id=CVE-2021-23839", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + ], + }, + "category": "Vulnerability", + "description": "OpenSSL 1.0.2 supports SSLv2. If a client attempts to negotiate SSLv2 with a server that is configured to support both SSLv2 and more recent SSL and TLS versions then a check is made for a version rollback attack when unpadding an RSA signature. Clients that support SSL or TLS versions greater than SSLv2 are supposed to use a special form of padding. A server that supports greater than SSLv2 is supposed to reject connection attempts from a client where this special form of padding is present, because this indicates that a version rollback has occurred (i.e. both client and server support greater than SSLv2, and yet this is the version that is being requested). The implementation of this padding check inverted the logic so that the connection attempt is accepted if the padding is present, and rejected if it is absent. This means that such as server will accept a connection if a version rollback attack has occurred. Further the server will erroneously reject a connection if a normal SSLv2 connection attempt is made. Only OpenSSL 1.0.2 servers from version 1.0.2s to 1.0.2x are affected by this issue. In order to be vulnerable a 1.0.2 server must: 1) have configured SSLv2 support at compile time (this is off by default), 2) have configured SSLv2 support at runtime (this is off by default), 3) have configured SSLv2 ciphersuites (these are not in the default ciphersuite list) OpenSSL 1.1.1 does not have SSLv2 support and therefore is not vulnerable to this issue. The underlying error is in the implementation of the RSA_padding_check_SSLv23() function. This also affects the RSA_SSLV23_PADDING padding mode used by various other functions. Although 1.1.1 does not support SSLv2 the RSA_padding_check_SSLv23() function still exists, as does the RSA_SSLV23_PADDING padding mode. Applications that directly call that function or use that padding mode will encounter this issue. However since there is no support for the SSLv2 protocol in 1.1.1 this is considered a bug and not a security issue in that version. OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.0.2y (Affected 1.0.2s-1.0.2x).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: incorrect SSLv2 rollback protection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-23839", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-23839", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=30919ab80a478f2d81f2e9acdcca3fa4740cd547", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-23839", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210219-0009/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-23839", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210216.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.1.1l-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-3711", + "installedVersion": "1.1.1g-r0", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/security/cve/CVE-2021-3711", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3711", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + "https://github.com/advisories/GHSA-5ww6-px42-wc85", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + "https://rustsec.org/advisories/RUSTSEC-2021-0097.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://security.netapp.com/advisory/ntap-20211022-0003/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3711", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02", + ], + }, + "category": "Vulnerability", + "description": "In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the "out" parameter can be NULL and, on exit, the "outlen" parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the "out" parameter. A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small. A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer by up to a maximum of 62 bytes altering the contents of other data held after the buffer, possibly changing application behaviour or causing the application to crash. The location of the buffer is application dependent but is typically heap allocated. Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: SM2 Decryption Buffer Overflow", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3711", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/26/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-5ww6-px42-wc85", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0097.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-02", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210827-0010/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211022-0003/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4963", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210824.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-16", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-02", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1j-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-23840", + "installedVersion": "1.1.1g-r0", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-23840", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23840", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "https://github.com/advisories/GHSA-qgm6-9472-pwq7", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-23840.html", + "https://linux.oracle.com/errata/ELSA-2021-9561.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23840", + "https://rustsec.org/advisories/RUSTSEC-2021-0057.html", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://ubuntu.com/security/notices/USN-4738-1", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-23840", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10", + ], + }, + "category": "Vulnerability", + "description": "Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate may overflow the output length argument in some cases where the input length is close to the maximum permissable length for an integer on the platform. In such cases the return value from the function call will be 1 (indicating success), but the output length value will be negative. This could cause applications to behave incorrectly or crash. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: integer overflow in CipherUpdate", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-23840", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-23840", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23840", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-qgm6-9472-pwq7", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-23840.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9561.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-23840", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0057.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202103-03", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210219-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4738-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5088-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-23840", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4855", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210216.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-03", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-09", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-10", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1k-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-3450", + "installedVersion": "1.1.1g-r0", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/03/27/1", + "http://www.openwall.com/lists/oss-security/2021/03/27/2", + "http://www.openwall.com/lists/oss-security/2021/03/28/3", + "http://www.openwall.com/lists/oss-security/2021/03/28/4", + "https://access.redhat.com/security/cve/CVE-2021-3450", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2a40b7bc7b94dd7de897a74571e7024f0cf0d63b", + "https://github.com/advisories/GHSA-8hfj-xrj2-pm22", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10356", + "https://linux.oracle.com/cve/CVE-2021-3450.html", + "https://linux.oracle.com/errata/ELSA-2021-9151.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + "https://mta.openssl.org/pipermail/openssl-announce/2021-March/000198.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3450", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + "https://rustsec.org/advisories/RUSTSEC-2021-0056.html", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210326-0006/", + "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + "https://www.cve.org/CVERecord?id=CVE-2021-3450", + "https://www.openssl.org/news/secadv/20210325.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-05", + "https://www.tenable.com/security/tns-2021-08", + "https://www.tenable.com/security/tns-2021-09", + ], + }, + "category": "Vulnerability", + "description": "The X509_V_FLAG_X509_STRICT flag enables additional security checks of the certificates present in a certificate chain. It is not set by default. Starting from OpenSSL version 1.1.1h a check to disallow certificates in the chain that have explicitly encoded elliptic curve parameters was added as an additional strict check. An error in the implementation of this check meant that the result of a previous check to confirm that certificates in the chain are valid CA certificates was overwritten. This effectively bypasses the check that non-CA certificates must not be able to issue other certificates. If a "purpose" has been configured then there is a subsequent opportunity for checks that the certificate is a valid CA. All of the named "purpose" values implemented in libcrypto perform this check. Therefore, where a purpose is set the certificate chain will still be rejected even when the strict flag has been used. A purpose is set by default in libssl client and server certificate verification routines, but it can be overridden or removed by an application. In order to be affected, an application must explicitly set the X509_V_FLAG_X509_STRICT verification flag and either not set a purpose for the certificate verification or, in the case of TLS client or server applications, override the default purpose. OpenSSL versions 1.1.1h and newer are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1h-1.1.1j).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: CA certificate check bypass with X509_V_FLAG_X509_STRICT", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3450", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/27/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/27/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/28/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/28/4", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3450", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2a40b7bc7b94dd7de897a74571e7024f0cf0d63b", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-8hfj-xrj2-pm22", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10356", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3450.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9151.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + }, + { + "type": "URL", + "value": "https://mta.openssl.org/pipermail/openssl-announce/2021-March/000198.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3450", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0056.html", + }, + { + "type": "URL", + "value": "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202103-03", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210326-0006/", + }, + { + "type": "URL", + "value": "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3450", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210325.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-05", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-08", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-09", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1l-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-3712", + "installedVersion": "1.1.1g-r0", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3712.json", + "https://access.redhat.com/security/cve/CVE-2021-3712", + "https://cert-portal.siemens.com/productcert/pdf/ssa-244969.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3712", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=94d23fcff9b2a7a8368dfe52214d5c2569882c11", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + "https://github.com/advisories/GHSA-q9wj-f4qw-6vfj", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-3712.html", + "https://linux.oracle.com/errata/ELSA-2022-9023.html", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00014.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", + "https://rustsec.org/advisories/RUSTSEC-2021-0098.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://ubuntu.com/security/notices/USN-5051-2", + "https://ubuntu.com/security/notices/USN-5051-3", + "https://ubuntu.com/security/notices/USN-5051-4 (regression only in trusty/esm)", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3712", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02", + ], + }, + "category": "Vulnerability", + "description": "ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own "d2i" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the "data" and "length" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though this is not guaranteed for strings that have been directly constructed. Where an application requests an ASN.1 structure to be printed, and where that ASN.1 structure contains ASN1_STRINGs that have been directly constructed by the application without NUL terminating the "data" field, then a read buffer overrun can occur. The same thing can also occur during name constraints processing of certificates (for example if a certificate has been directly constructed by the application instead of loading it via the OpenSSL parsing functions, and the certificate contains non NUL terminated ASN1_STRING structures). It can also occur in the X509_get1_email(), X509_REQ_get1_email() and X509_get1_ocsp() functions. If a malicious actor can cause an application to directly construct an ASN1_STRING and then process it through one of the affected OpenSSL functions then this issue could be hit. This might result in a crash (causing a Denial of Service attack). It could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext). Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k). Fixed in OpenSSL 1.0.2za (Affected 1.0.2-1.0.2y).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: Read buffer overruns processing ASN.1 strings", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3712", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/26/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3712.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-244969.pdf", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=94d23fcff9b2a7a8368dfe52214d5c2569882c11", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-q9wj-f4qw-6vfj", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3712.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9023.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0098.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-02", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210827-0010/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-4 (regression only in trusty/esm)", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5088-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4963", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210824.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-16", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-02", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2022-0778", + "installedVersion": "1.1.1g-r0", + "packageName": "libssl1.1", + "references": [ + "http://packetstormsecurity.com/files/167344/OpenSSL-1.0.2-1.1.1-3.0-BN_mod_sqrt-Infinite-Loop.html", + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "https://access.redhat.com/errata/RHSA-2022:5326", + "https://access.redhat.com/security/cve/CVE-2022-0778", + "https://bugzilla.redhat.com/2062202", + "https://bugzilla.redhat.com/show_bug.cgi?id=2062202", + "https://cert-portal.siemens.com/productcert/pdf/ssa-712929.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0778", + "https://errata.almalinux.org/8/ALSA-2022-5326.html", + "https://errata.rockylinux.org/RLSA-2022:4899", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3118eb64934499d93db3230748a452351d1d9a65", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=380085481c64de749a6dd25cdf0bcf4360b30f83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a466912611aa6cbdf550cd10601390e587451246", + "https://github.com/advisories/GHSA-x3mh-jvjw-3xwx", + "https://linux.oracle.com/cve/CVE-2022-0778.html", + "https://linux.oracle.com/errata/ELSA-2022-9272.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00024.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/323SNN6ZX7PRJJWP2BUAFLPUAE42XWLZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GDB3GQVJPXJE7X5C5JN6JAA4XUDWD6E6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W6K3PR542DXWLEFFMFIDMME4CWMHJRMG/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0002", + "https://rustsec.org/advisories/RUSTSEC-2022-0014.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220321-0002/", + "https://security.netapp.com/advisory/ntap-20220429-0005/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5328-1", + "https://ubuntu.com/security/notices/USN-5328-2", + "https://www.cve.org/CVERecord?id=CVE-2022-0778", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220315.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.tenable.com/security/tns-2022-06", + "https://www.tenable.com/security/tns-2022-07", + "https://www.tenable.com/security/tns-2022-08", + "https://www.tenable.com/security/tns-2022-09", + ], + }, + "category": "Vulnerability", + "description": "The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: Infinite loop in BN_mod_sqrt() reachable when parsing certificates", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0778", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/167344/OpenSSL-1.0.2-1.1.1-3.0-BN_mod_sqrt-Infinite-Loop.html", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/33", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/35", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/38", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:5326", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2062202", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2062202", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-712929.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2022-5326.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:4899", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3118eb64934499d93db3230748a452351d1d9a65", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=380085481c64de749a6dd25cdf0bcf4360b30f83", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a466912611aa6cbdf550cd10601390e587451246", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-x3mh-jvjw-3xwx", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-0778.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9272.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/03/msg00024.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/323SNN6ZX7PRJJWP2BUAFLPUAE42XWLZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GDB3GQVJPXJE7X5C5JN6JAA4XUDWD6E6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W6K3PR542DXWLEFFMFIDMME4CWMHJRMG/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0002", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2022-0014.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220321-0002/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220429-0005/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213255", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213256", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213257", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5328-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5328-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5103", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220315.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-06", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-07", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-08", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-09", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1i-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2020-1971", + "installedVersion": "1.1.1g-r0", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/09/14/2", + "https://access.redhat.com/security/cve/CVE-2020-1971", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1971", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2154ab83e14ede338d2ede9bbe5cdfce5d5a6c9e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=f960d81215ebf3f65e03d4d5d857fb9b666d6920", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44676", + "https://linux.oracle.com/cve/CVE-2020-1971.html", + "https://linux.oracle.com/errata/ELSA-2021-9150.html", + "https://lists.apache.org/thread.html/r63c6f2dd363d9b514d0a4bcf624580616a679898cc14c109a49b750c@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rbb769f771711fb274e0a4acb1b5911c8aab544a6ac5e8c12d40c5143@%3Ccommits.pulsar.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2020/12/msg00020.html", + "https://lists.debian.org/debian-lts-announce/2020/12/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DGSI34Y5LQ5RYXN4M2I5ZQT65LFVDOUU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/PWPSSZNZOBJU2YR6Z4TGHXKYW3YP5QG7/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1971", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-20:33.openssl.asc", + "https://security.gentoo.org/glsa/202012-13", + "https://security.netapp.com/advisory/ntap-20201218-0005/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://ubuntu.com/security/notices/USN-4662-1", + "https://ubuntu.com/security/notices/USN-4745-1", + "https://www.cve.org/CVERecord?id=CVE-2020-1971", + "https://www.debian.org/security/2020/dsa-4807", + "https://www.openssl.org/news/secadv/20201208.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2021.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2020-11", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10", + ], + }, + "category": "Vulnerability", + "description": "The X.509 GeneralName type is a generic type for representing different types of names. One of those name types is known as EDIPartyName. OpenSSL provides a function GENERAL_NAME_cmp which compares different instances of a GENERAL_NAME to see if they are equal or not. This function behaves incorrectly when both GENERAL_NAMEs contain an EDIPARTYNAME. A NULL pointer dereference and a crash may occur leading to a possible denial of service attack. OpenSSL itself uses the GENERAL_NAME_cmp function for two purposes: 1) Comparing CRL distribution point names between an available CRL and a CRL distribution point embedded in an X509 certificate 2) When verifying that a timestamp response token signer matches the timestamp authority name (exposed via the API functions TS_RESP_verify_response and TS_RESP_verify_token) If an attacker can control both items being compared then that attacker could trigger a crash. For example if the attacker can trick a client or server into checking a malicious certificate against a malicious CRL then this may occur. Note that some applications automatically download CRLs based on a URL embedded in a certificate. This checking happens prior to the signatures on the certificate and CRL being verified. OpenSSL's s_server, s_client and verify tools have support for the "-crl_download" option which implements automatic CRL downloading and this attack has been demonstrated to work against those tools. Note that an unrelated bug means that affected versions of OpenSSL cannot parse or construct correct encodings of EDIPARTYNAME. However it is possible to construct a malformed EDIPARTYNAME that OpenSSL's parser will accept and hence trigger this attack. All OpenSSL 1.1.1 and 1.0.2 versions are affected by this issue. Other OpenSSL releases are out of support and have not been checked. Fixed in OpenSSL 1.1.1i (Affected 1.1.1-1.1.1h). Fixed in OpenSSL 1.0.2x (Affected 1.0.2-1.0.2w).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: EDIPARTYNAME NULL pointer de-reference", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-1971", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/14/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-1971", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1971", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2154ab83e14ede338d2ede9bbe5cdfce5d5a6c9e", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=f960d81215ebf3f65e03d4d5d857fb9b666d6920", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44676", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-1971.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9150.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r63c6f2dd363d9b514d0a4bcf624580616a679898cc14c109a49b750c@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rbb769f771711fb274e0a4acb1b5911c8aab544a6ac5e8c12d40c5143@%3Ccommits.pulsar.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2020/12/msg00020.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2020/12/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DGSI34Y5LQ5RYXN4M2I5ZQT65LFVDOUU/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/PWPSSZNZOBJU2YR6Z4TGHXKYW3YP5QG7/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-1971", + }, + { + "type": "URL", + "value": "https://security.FreeBSD.org/advisories/FreeBSD-SA-20:33.openssl.asc", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202012-13", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20201218-0005/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210513-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4662-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4745-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-1971", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2020/dsa-4807", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20201208.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2020-11", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-09", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-10", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1j-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-23841", + "installedVersion": "1.1.1g-r0", + "packageName": "libssl1.1", + "references": [ + "http://seclists.org/fulldisclosure/2021/May/67", + "http://seclists.org/fulldisclosure/2021/May/68", + "http://seclists.org/fulldisclosure/2021/May/70", + "https://access.redhat.com/security/cve/CVE-2021-23841", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23841", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "https://github.com/advisories/GHSA-84rm-qf37-fgc2", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://linux.oracle.com/cve/CVE-2021-23841.html", + "https://linux.oracle.com/errata/ELSA-2021-9561.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23841", + "https://rustsec.org/advisories/RUSTSEC-2021-0058", + "https://rustsec.org/advisories/RUSTSEC-2021-0058.html", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://support.apple.com/kb/HT212528", + "https://support.apple.com/kb/HT212529", + "https://support.apple.com/kb/HT212534", + "https://ubuntu.com/security/notices/USN-4738-1", + "https://ubuntu.com/security/notices/USN-4745-1", + "https://www.cve.org/CVERecord?id=CVE-2021-23841", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09", + ], + }, + "category": "Vulnerability", + "description": "The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: NULL pointer dereference in X509_issuer_and_serial_hash()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-23841", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/May/67", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/May/68", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/May/70", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-23841", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23841", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-84rm-qf37-fgc2", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-23841.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9561.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-23841", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0058", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0058.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202103-03", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210219-0009/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210513-0002/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212528", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212529", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212534", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4738-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4745-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-23841", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4855", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210216.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-03", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-09", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1k-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-3449", + "installedVersion": "1.1.1g-r0", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/03/27/1", + "http://www.openwall.com/lists/oss-security/2021/03/27/2", + "http://www.openwall.com/lists/oss-security/2021/03/28/3", + "http://www.openwall.com/lists/oss-security/2021/03/28/4", + "https://access.redhat.com/security/cve/CVE-2021-3449", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-772220.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3449", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fb9fa6b51defd48157eeb207f52181f735d96148", + "https://github.com/advisories/GHSA-83mx-573x-5rw9", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10356", + "https://linux.oracle.com/cve/CVE-2021-3449.html", + "https://linux.oracle.com/errata/ELSA-2021-9151.html", + "https://lists.debian.org/debian-lts-announce/2021/08/msg00029.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3449", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + "https://rustsec.org/advisories/RUSTSEC-2021-0055", + "https://rustsec.org/advisories/RUSTSEC-2021-0055.html", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210326-0006/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + "https://ubuntu.com/security/notices/USN-4891-1", + "https://ubuntu.com/security/notices/USN-5038-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3449", + "https://www.debian.org/security/2021/dsa-4875", + "https://www.openssl.org/news/secadv/20210325.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-05", + "https://www.tenable.com/security/tns-2021-06", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10", + ], + }, + "category": "Vulnerability", + "description": "An OpenSSL TLS server may crash if sent a maliciously crafted renegotiation ClientHello message from a client. If a TLSv1.2 renegotiation ClientHello omits the signature_algorithms extension (where it was present in the initial ClientHello), but includes a signature_algorithms_cert extension then a NULL pointer dereference will result, leading to a crash and a denial of service attack. A server is only vulnerable if it has TLSv1.2 and renegotiation enabled (which is the default configuration). OpenSSL TLS clients are not impacted by this issue. All OpenSSL 1.1.1 versions are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1-1.1.1j).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: NULL pointer dereference in signature_algorithms processing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3449", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/27/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/27/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/28/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/28/4", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3449", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-772220.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3449", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fb9fa6b51defd48157eeb207f52181f735d96148", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-83mx-573x-5rw9", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10356", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3449.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9151.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/08/msg00029.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3449", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0055", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0055.html", + }, + { + "type": "URL", + "value": "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202103-03", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210326-0006/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210513-0002/", + }, + { + "type": "URL", + "value": "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4891-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3449", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4875", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210325.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-05", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-06", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-09", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-10", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1j-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-23839", + "installedVersion": "1.1.1g-r0", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-23839", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=30919ab80a478f2d81f2e9acdcca3fa4740cd547", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23839", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://www.cve.org/CVERecord?id=CVE-2021-23839", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + ], + }, + "category": "Vulnerability", + "description": "OpenSSL 1.0.2 supports SSLv2. If a client attempts to negotiate SSLv2 with a server that is configured to support both SSLv2 and more recent SSL and TLS versions then a check is made for a version rollback attack when unpadding an RSA signature. Clients that support SSL or TLS versions greater than SSLv2 are supposed to use a special form of padding. A server that supports greater than SSLv2 is supposed to reject connection attempts from a client where this special form of padding is present, because this indicates that a version rollback has occurred (i.e. both client and server support greater than SSLv2, and yet this is the version that is being requested). The implementation of this padding check inverted the logic so that the connection attempt is accepted if the padding is present, and rejected if it is absent. This means that such as server will accept a connection if a version rollback attack has occurred. Further the server will erroneously reject a connection if a normal SSLv2 connection attempt is made. Only OpenSSL 1.0.2 servers from version 1.0.2s to 1.0.2x are affected by this issue. In order to be vulnerable a 1.0.2 server must: 1) have configured SSLv2 support at compile time (this is off by default), 2) have configured SSLv2 support at runtime (this is off by default), 3) have configured SSLv2 ciphersuites (these are not in the default ciphersuite list) OpenSSL 1.1.1 does not have SSLv2 support and therefore is not vulnerable to this issue. The underlying error is in the implementation of the RSA_padding_check_SSLv23() function. This also affects the RSA_SSLV23_PADDING padding mode used by various other functions. Although 1.1.1 does not support SSLv2 the RSA_padding_check_SSLv23() function still exists, as does the RSA_SSLV23_PADDING padding mode. Applications that directly call that function or use that padding mode will encounter this issue. However since there is no support for the SSLv2 protocol in 1.1.1 this is considered a bug and not a security issue in that version. OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.0.2y (Affected 1.0.2s-1.0.2x).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "openssl: incorrect SSLv2 rollback protection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-23839", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-23839", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=30919ab80a478f2d81f2e9acdcca3fa4740cd547", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-23839", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210219-0009/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-23839", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210216.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.1.24-r10", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2020-28928", + "installedVersion": "1.1.24-r8", + "packageName": "musl", + "references": [ + "http://www.openwall.com/lists/oss-security/2020/11/20/4", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28928", + "https://lists.apache.org/thread.html/r2134abfe847bea7795f0e53756d10a47e6643f35ab8169df8b8a9eb1@%3Cnotifications.apisix.apache.org%3E", + "https://lists.apache.org/thread.html/r90b60cf49348e515257b4950900c1bd3ab95a960cf2469d919c7264e@%3Cnotifications.apisix.apache.org%3E", + "https://lists.apache.org/thread.html/ra63e8dc5137d952afc55dbbfa63be83304ecf842d1eab1ff3ebb29e2@%3Cnotifications.apisix.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2020/11/msg00050.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LKQ3RVSMVZNZNO4D65W2CZZ4DMYFZN2Q/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UW27QVY7ERPTSGKS4KAWE5TU7EJWHKVQ/", + "https://musl.libc.org/releases.html", + "https://ubuntu.com/security/notices/USN-5990-1", + "https://www.openwall.com/lists/oss-security/2020/11/20/4", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + ], + }, + "category": "Vulnerability", + "description": "In musl libc through 1.2.1, wcsnrtombs mishandles particular combinations of destination buffer size and source character limit, as demonstrated by an invalid write access (buffer overflow).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "In musl libc through 1.2.1, wcsnrtombs mishandles particular combinati ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-28928", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2020/11/20/4", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28928", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r2134abfe847bea7795f0e53756d10a47e6643f35ab8169df8b8a9eb1@%3Cnotifications.apisix.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r90b60cf49348e515257b4950900c1bd3ab95a960cf2469d919c7264e@%3Cnotifications.apisix.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/ra63e8dc5137d952afc55dbbfa63be83304ecf842d1eab1ff3ebb29e2@%3Cnotifications.apisix.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2020/11/msg00050.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LKQ3RVSMVZNZNO4D65W2CZZ4DMYFZN2Q/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UW27QVY7ERPTSGKS4KAWE5TU7EJWHKVQ/", + }, + { + "type": "URL", + "value": "https://musl.libc.org/releases.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5990-1", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2020/11/20/4", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.24-r10", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2020-28928", + "installedVersion": "1.1.24-r8", + "packageName": "musl-utils", + "references": [ + "http://www.openwall.com/lists/oss-security/2020/11/20/4", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28928", + "https://lists.apache.org/thread.html/r2134abfe847bea7795f0e53756d10a47e6643f35ab8169df8b8a9eb1@%3Cnotifications.apisix.apache.org%3E", + "https://lists.apache.org/thread.html/r90b60cf49348e515257b4950900c1bd3ab95a960cf2469d919c7264e@%3Cnotifications.apisix.apache.org%3E", + "https://lists.apache.org/thread.html/ra63e8dc5137d952afc55dbbfa63be83304ecf842d1eab1ff3ebb29e2@%3Cnotifications.apisix.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2020/11/msg00050.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LKQ3RVSMVZNZNO4D65W2CZZ4DMYFZN2Q/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UW27QVY7ERPTSGKS4KAWE5TU7EJWHKVQ/", + "https://musl.libc.org/releases.html", + "https://ubuntu.com/security/notices/USN-5990-1", + "https://www.openwall.com/lists/oss-security/2020/11/20/4", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + ], + }, + "category": "Vulnerability", + "description": "In musl libc through 1.2.1, wcsnrtombs mishandles particular combinations of destination buffer size and source character limit, as demonstrated by an invalid write access (buffer overflow).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "In musl libc through 1.2.1, wcsnrtombs mishandles particular combinati ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-28928", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2020/11/20/4", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28928", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r2134abfe847bea7795f0e53756d10a47e6643f35ab8169df8b8a9eb1@%3Cnotifications.apisix.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r90b60cf49348e515257b4950900c1bd3ab95a960cf2469d919c7264e@%3Cnotifications.apisix.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/ra63e8dc5137d952afc55dbbfa63be83304ecf842d1eab1ff3ebb29e2@%3Cnotifications.apisix.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2020/11/msg00050.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LKQ3RVSMVZNZNO4D65W2CZZ4DMYFZN2Q/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UW27QVY7ERPTSGKS4KAWE5TU7EJWHKVQ/", + }, + { + "type": "URL", + "value": "https://musl.libc.org/releases.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5990-1", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2020/11/20/4", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r20", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-28831", + "installedVersion": "1.31.1-r16", + "packageName": "ssl_client", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-28831", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28831", + "https://git.busybox.net/busybox/commit/?id=f25d254dfd4243698c31a4f3153d4ac72aa9e9bd", + "https://lists.debian.org/debian-lts-announce/2021/04/msg00001.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UDQGJRECXFS5EZVDH2OI45FMO436AC4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z7ZIFKPRR32ZYA3WAA2NXFA3QHHOU6FJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZASBW7QRRLY5V2R44MQ4QQM4CZIDHM2U/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-28831", + "https://security.gentoo.org/glsa/202105-09", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://ubuntu.com/security/notices/USN-5179-2", + "https://www.cve.org/CVERecord?id=CVE-2021-28831", + ], + }, + "category": "Vulnerability", + "description": "decompress_gunzip.c in BusyBox through 1.32.1 mishandles the error bit on the huft_build result pointer, with a resultant invalid free or segmentation fault, via malformed gzip data.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: invalid free or segmentation fault via malformed gzip data", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-28831", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-28831", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28831", + }, + { + "type": "URL", + "value": "https://git.busybox.net/busybox/commit/?id=f25d254dfd4243698c31a4f3153d4ac72aa9e9bd", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/04/msg00001.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UDQGJRECXFS5EZVDH2OI45FMO436AC4/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z7ZIFKPRR32ZYA3WAA2NXFA3QHHOU6FJ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZASBW7QRRLY5V2R44MQ4QQM4CZIDHM2U/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-28831", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202105-09", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-28831", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42378", + "installedVersion": "1.31.1-r16", + "packageName": "ssl_client", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42378", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42378", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42378", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42378", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_i function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_i()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42378", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42378", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42378", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42378", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42378", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42379", + "installedVersion": "1.31.1-r16", + "packageName": "ssl_client", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42379", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42379", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42379", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42379", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the next_input_file function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the next_input_file()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42379", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42379", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42379", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42379", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42379", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42380", + "installedVersion": "1.31.1-r16", + "packageName": "ssl_client", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42380", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42380", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42380", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42380", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the clrvar function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the clrvar()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42380", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42380", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42380", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42380", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42380", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42381", + "installedVersion": "1.31.1-r16", + "packageName": "ssl_client", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42381", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42381", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42381", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42381", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the hash_init function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the hash_init()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42381", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42381", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42381", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42381", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42381", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42382", + "installedVersion": "1.31.1-r16", + "packageName": "ssl_client", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42382", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42382", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42382", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42382", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_s function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_s()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42382", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42382", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42382", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42382", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42382", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42383", + "installedVersion": "1.31.1-r16", + "packageName": "ssl_client", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42383", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42383", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-42383", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42383", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42383", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42383", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42384", + "installedVersion": "1.31.1-r16", + "packageName": "ssl_client", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42384", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42384", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42384", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42384", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the handle_special function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the handle_special()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42384", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42384", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42384", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42384", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42384", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42385", + "installedVersion": "1.31.1-r16", + "packageName": "ssl_client", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42385", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42385", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42385", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42385", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42385", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42385", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42385", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42385", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42385", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42386", + "installedVersion": "1.31.1-r16", + "packageName": "ssl_client", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42386", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42386", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42386", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42386", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the nvalloc function", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the nvalloc()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42386", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42386", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42386", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42386", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42386", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r22", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2022-28391", + "installedVersion": "1.31.1-r16", + "packageName": "ssl_client", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-28391", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28391", + "https://git.alpinelinux.org/aports/plain/main/busybox/0001-libbb-sockaddr2str-ensure-only-printable-characters-.patch", + "https://git.alpinelinux.org/aports/plain/main/busybox/0002-nslookup-sanitize-all-printed-strings-with-printable.patch", + "https://gitlab.alpinelinux.org/alpine/aports/-/issues/13661", + "https://nvd.nist.gov/vuln/detail/CVE-2022-28391", + "https://www.cve.org/CVERecord?id=CVE-2022-28391", + ], + }, + "category": "Vulnerability", + "description": "BusyBox through 1.35.0 allows remote attackers to execute arbitrary code if netstat is used to print a DNS PTR record's value to a VT compatible terminal. Alternatively, the attacker could choose to change the terminal's colors.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: remote attackers may execute arbitrary code if netstat is used", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-28391", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-28391", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28391", + }, + { + "type": "URL", + "value": "https://git.alpinelinux.org/aports/plain/main/busybox/0001-libbb-sockaddr2str-ensure-only-printable-characters-.patch", + }, + { + "type": "URL", + "value": "https://git.alpinelinux.org/aports/plain/main/busybox/0002-nslookup-sanitize-all-printed-strings-with-printable.patch", + }, + { + "type": "URL", + "value": "https://gitlab.alpinelinux.org/alpine/aports/-/issues/13661", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-28391", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-28391", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.31.1-r21", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2021-42374", + "installedVersion": "1.31.1-r16", + "packageName": "ssl_client", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-42374", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42374", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42374", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42374", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds heap read in Busybox's unlzma applet leads to information leak and denial of service when crafted LZMA-compressed input is decompressed. This can be triggered by any applet/format that", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "busybox: out-of-bounds read in unlzma applet leads to information leak and denial of service when crafted LZMA-compressed input is decompressed", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-42374", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-42374", + }, + { + "type": "URL", + "value": "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42374", + }, + { + "type": "URL", + "value": "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-42374", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211223-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5179-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-42374", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.2.12-r2", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2022-37434", + "installedVersion": "1.2.11-r3", + "packageName": "zlib", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/37", + "http://seclists.org/fulldisclosure/2022/Oct/38", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/42", + "http://www.openwall.com/lists/oss-security/2022/08/05/2", + "http://www.openwall.com/lists/oss-security/2022/08/09/1", + "https://access.redhat.com/errata/RHSA-2022:8291", + "https://access.redhat.com/security/cve/CVE-2022-37434", + "https://bugzilla.redhat.com/2116639", + "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + "https://errata.almalinux.org/9/ALSA-2022-8291.html", + "https://errata.rockylinux.org/RLSA-2022:8291", + "https://github.com/curl/curl/issues/9271", + "https://github.com/ivd38/zlib_overflow", + "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + "https://linux.oracle.com/cve/CVE-2022-37434.html", + "https://linux.oracle.com/errata/ELSA-2023-1095.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + "https://security.netapp.com/advisory/ntap-20220901-0005/", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://support.apple.com/kb/HT213488", + "https://support.apple.com/kb/HT213489", + "https://support.apple.com/kb/HT213490", + "https://support.apple.com/kb/HT213491", + "https://support.apple.com/kb/HT213493", + "https://support.apple.com/kb/HT213494", + "https://ubuntu.com/security/notices/USN-5570-1", + "https://ubuntu.com/security/notices/USN-5570-2", + "https://ubuntu.com/security/notices/USN-5573-1", + "https://www.cve.org/CVERecord?id=CVE-2022-37434", + "https://www.debian.org/security/2022/dsa-5218", + ], + }, + "category": "Vulnerability", + "description": "zlib through 1.2.12 has a heap-based buffer over-read or buffer overflow in inflate in inflate.c via a large gzip header extra field. NOTE: only applications that call inflateGetHeader are affected. Some common applications bundle the affected zlib source code but may be unable to call inflateGetHeader (e.g., see the nodejs/node reference).", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "heap-based buffer over-read and overflow in inflate() in inflate.c via a large gzip header extra field", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-37434", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/37", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/38", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/41", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/42", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/08/05/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/08/09/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8291", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2116639", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8291.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8291", + }, + { + "type": "URL", + "value": "https://github.com/curl/curl/issues/9271", + }, + { + "type": "URL", + "value": "https://github.com/ivd38/zlib_overflow", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + }, + { + "type": "URL", + "value": "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-37434.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-1095.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220901-0005/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0007/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213488", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213489", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213490", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213491", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213493", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213494", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5570-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5570-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5573-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5218", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.2.12-r0", + "foundIn": "Target: 'docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2018-25032", + "installedVersion": "1.2.11-r3", + "packageName": "zlib", + "references": [ + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "http://www.openwall.com/lists/oss-security/2022/03/25/2", + "http://www.openwall.com/lists/oss-security/2022/03/26/1", + "https://access.redhat.com/errata/RHSA-2022:8420", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + "https://access.redhat.com/security/cve/CVE-2018-25032", + "https://bugzilla.redhat.com/2067945", + "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + "https://errata.almalinux.org/9/ALSA-2022-8420.html", + "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + "https://github.com/madler/zlib/issues/605", + "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + "https://linux.oracle.com/cve/CVE-2018-25032.html", + "https://linux.oracle.com/errata/ELSA-2022-9565.html", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + "https://security.gentoo.org/glsa/202210-42", + "https://security.netapp.com/advisory/ntap-20220526-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5355-1", + "https://ubuntu.com/security/notices/USN-5355-2", + "https://ubuntu.com/security/notices/USN-5359-1", + "https://ubuntu.com/security/notices/USN-5359-2", + "https://ubuntu.com/security/notices/USN-5739-1", + "https://www.cve.org/CVERecord?id=CVE-2018-25032", + "https://www.debian.org/security/2022/dsa-5111", + "https://www.openwall.com/lists/oss-security/2022/03/24/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/3", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": undefined, + "name": "A flaw found in zlib when compressing (not decompressing) certain inputs", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-25032", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/33", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/35", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/38", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/03/25/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/03/26/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8420", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2067945", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8420.html", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/issues/605", + }, + { + "type": "URL", + "value": "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + }, + { + "type": "URL", + "value": "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2018-25032.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9565.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-42", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220526-0009/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0004/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213255", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213256", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213257", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5355-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5355-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5359-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5359-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5739-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5111", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/24/1", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/28/1", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/28/3", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV015", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015", + ], + }, + "category": "Misconfiguration", + "description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'containers[].resources.requests.cpu'.", + "name": "CPU requests not specified(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.requests.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv015", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/local-path-provisioner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'local-path-storage' / Kind: 'Deployment' / Name: 'local-path-provisioner'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.16.0+incompatible", + "foundIn": "Target: 'metrics-sidecar' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-1996", + "installedVersion": "v2.15.0+incompatible", + "packageName": "github.com/emicklei/go-restful", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-1996", + "https://github.com/advisories/GHSA-r48q-9g5r-8q2h", + "https://github.com/emicklei/go-restful/commit/926662532deb450272956c7bc573978464aae74e", + "https://github.com/emicklei/go-restful/commit/f292efff46ae17e9d104f865a60a39a2ae9402f1", + "https://github.com/emicklei/go-restful/commit/fd3c327a379ce08c68ef18765bdc925f5d9bad10", + "https://github.com/emicklei/go-restful/issues/489", + "https://huntr.dev/bounties/be837427-415c-4d8c-808b-62ce20aa84f1", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/575BLJ3Y2EQBRNTFR2OSQQ6L2W6UCST3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OBDD3Q23RCGAGHIXUCWBU6N3S4RNAKXB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SO5QC2JFW2PXBWAE27OYYYL5SPFUBHTY/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W56PP46JVZEKCANBKXFKRVSBBRRMCY6V/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZGQKWD6SE75PFBPFVSZYAKAVXKBZXKWS/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1996", + "https://pkg.go.dev/vuln/GO-2022-0619", + "https://security.netapp.com/advisory/ntap-20220923-0005/", + "https://www.cve.org/CVERecord?id=CVE-2022-1996", + ], + }, + "category": "Vulnerability", + "description": "Authorization Bypass Through User-Controlled Key in GitHub repository emicklei/go-restful prior to v3.8.0.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": undefined, + "name": "Authorization Bypass Through User-Controlled Key", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1996", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1996", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-r48q-9g5r-8q2h", + }, + { + "type": "URL", + "value": "https://github.com/emicklei/go-restful/commit/926662532deb450272956c7bc573978464aae74e", + }, + { + "type": "URL", + "value": "https://github.com/emicklei/go-restful/commit/f292efff46ae17e9d104f865a60a39a2ae9402f1", + }, + { + "type": "URL", + "value": "https://github.com/emicklei/go-restful/commit/fd3c327a379ce08c68ef18765bdc925f5d9bad10", + }, + { + "type": "URL", + "value": "https://github.com/emicklei/go-restful/issues/489", + }, + { + "type": "URL", + "value": "https://huntr.dev/bounties/be837427-415c-4d8c-808b-62ce20aa84f1", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/575BLJ3Y2EQBRNTFR2OSQQ6L2W6UCST3/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OBDD3Q23RCGAGHIXUCWBU6N3S4RNAKXB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SO5QC2JFW2PXBWAE27OYYYL5SPFUBHTY/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W56PP46JVZEKCANBKXFKRVSBBRRMCY6V/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZGQKWD6SE75PFBPFVSZYAKAVXKBZXKWS/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1996", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0619", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0005/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1996", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'metrics-sidecar' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20220524220425-1d687d428aca", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.1.1-0.20221104162952-702349b0e862", + "foundIn": "Target: 'metrics-sidecar' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41721", + "installedVersion": "v0.0.0-20220524220425-1d687d428aca", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41721", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41721", + "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + "https://go.dev/cl/447396", + "https://go.dev/issue/56352", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + "https://pkg.go.dev/vuln/GO-2023-1495", + "https://www.cve.org/CVERecord?id=CVE-2022-41721", + ], + }, + "category": "Vulnerability", + "description": "A request smuggling attack is possible when using MaxBytesHandler. When using MaxBytesHandler, the body of an HTTP request is not fully consumed. When the server attempts to read HTTP2 frames from the connection, it will instead be reading the body of the HTTP request, which could be attacker-manipulated to represent arbitrary HTTP2 requests.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": undefined, + "name": "request smuggling", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41721", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + }, + { + "type": "URL", + "value": "https://go.dev/cl/447396", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56352", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1495", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41721", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'metrics-sidecar' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20220524220425-1d687d428aca", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'metrics-sidecar' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20220524220425-1d687d428aca", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'metrics-sidecar' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.7", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/dashboard-metrics-scraper' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/dashboard-metrics-scraper' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/dashboard-metrics-scraper' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/dashboard-metrics-scraper' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV015", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015", + ], + }, + "category": "Misconfiguration", + "description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": "Set 'containers[].resources.requests.cpu'.", + "name": "CPU requests not specified(Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'resources.requests.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv015", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/dashboard-metrics-scraper' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/dashboard-metrics-scraper' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/dashboard-metrics-scraper' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/dashboard-metrics-scraper' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/dashboard-metrics-scraper' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'dashboard-metrics-scraper'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "3.0.0-20220521103104-8f96da9f5d5e", + "foundIn": "Target: 'manager' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-28948", + "installedVersion": "v3.0.0-20220512140231-539c8e751b99", + "packageName": "gopkg.in/yaml.v3", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-28948", + "https://github.com/advisories/GHSA-hp87-p4gw-j4gq", + "https://github.com/go-yaml/yaml/commit/8f96da9f5d5eff988554c1aae1784627c4bf6754", + "https://github.com/go-yaml/yaml/issues/666", + "https://nvd.nist.gov/vuln/detail/CVE-2022-28948", + "https://security.netapp.com/advisory/ntap-20220923-0006/", + "https://www.cve.org/CVERecord?id=CVE-2022-28948", + ], + }, + "category": "Vulnerability", + "description": "An issue in the Unmarshal function in Go-Yaml v3 causes the program to crash when attempting to deserialize invalid input.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-controller-manager'", + "mitigation": undefined, + "name": "crash when attempting to deserialize invalid input", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-28948", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-28948", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-hp87-p4gw-j4gq", + }, + { + "type": "URL", + "value": "https://github.com/go-yaml/yaml/commit/8f96da9f5d5eff988554c1aae1784627c4bf6754", + }, + { + "type": "URL", + "value": "https://github.com/go-yaml/yaml/issues/666", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-28948", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0006/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-28948", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-controller-manager'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'manager' of Deployment 'securecodebox-controller-manager' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-controller-manager'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'manager' of Deployment 'securecodebox-controller-manager' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-controller-manager'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-controller-manager'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-8911", + "installedVersion": "v1.35.9", + "packageName": "github.com/aws/aws-sdk-go", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-8911", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869800", + "https://github.com/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8911", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8911", + ], + }, + "category": "Vulnerability", + "description": "A padding oracle vulnerability exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. The SDK allows users to encrypt files with AES-CBC without computing a Message Authentication Code (MAC), which then allows an attacker who has write access to the target's S3 bucket and can observe whether or not an endpoint with access to the key can decrypt a file, they can reconstruct the plaintext with (on average) 128*length (plaintext) queries to the endpoint, by exploiting CBC's ability to manipulate the bytes of the next block and PKCS5 padding errors. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "aws/aws-sdk-go: CBC padding oracle issue in AWS S3 Crypto SDK for golang", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-8911", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-8911", + }, + { + "type": "URL", + "value": "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1869800", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-f5pg-7wfw-84q9", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/pull/3403", + }, + { + "type": "URL", + "value": "https://github.com/google/security-research/security/advisories/GHSA-f5pg-7wfw-84q9", + }, + { + "type": "URL", + "value": "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-8911", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0646", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-8911", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-8912", + "installedVersion": "v1.35.9", + "packageName": "github.com/aws/aws-sdk-go", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-8912", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869801", + "https://github.com/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8912", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8912", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability in the in-band key negotiation exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. An attacker with write access to the targeted bucket can change the encryption algorithm of an object in the bucket, which can then allow them to change AES-GCM to AES-CTR. Using this in combination with a decryption oracle can reveal the authentication key used by AES-GCM as decrypting the GMAC tag leaves the authentication key recoverable as an algebraic equation. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "aws-sdk-go: In-band key negotiation issue in AWS S3 Crypto SDK for golang", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-8912", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-8912", + }, + { + "type": "URL", + "value": "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1869801", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-7f33-f4f5-xwgw", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/pull/3403", + }, + { + "type": "URL", + "value": "https://github.com/google/security-research/security/advisories/GHSA-7f33-f4f5-xwgw", + }, + { + "type": "URL", + "value": "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-8912", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0646", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-8912", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.3.2", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-3121", + "installedVersion": "v1.3.1", + "packageName": "github.com/gogo/protobuf", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-3121", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3121", + "https://discuss.hashicorp.com/t/hcsec-2021-23-consul-exposed-to-denial-of-service-in-gogo-protobuf-dependency/29025", + "https://github.com/advisories/GHSA-c3h9-896r-86jm", + "https://github.com/gogo/protobuf/commit/b03c65ea87cdc3521ede29f62fe3ce239267c1bc", + "https://github.com/gogo/protobuf/compare/v1.3.1...v1.3.2", + "https://lists.apache.org/thread.html/r68032132c0399c29d6cdc7bd44918535da54060a10a12b1591328bff@%3Cnotifications.skywalking.apache.org%3E", + "https://lists.apache.org/thread.html/r88d69555cb74a129a7bf84838073b61259b4a3830190e05a3b87994e@%3Ccommits.pulsar.apache.org%3E", + "https://lists.apache.org/thread.html/rc1e9ff22c5641d73701ba56362fb867d40ed287cca000b131dcf4a44@%3Ccommits.pulsar.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3121", + "https://pkg.go.dev/vuln/GO-2021-0053", + "https://security.netapp.com/advisory/ntap-20210219-0006/", + "https://www.cve.org/CVERecord?id=CVE-2021-3121", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in GoGo Protobuf before 1.3.2. plugin/unmarshal/unmarshal.go lacks certain index validation, aka the "skippy peanut butter" issue.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "gogo/protobuf: plugin/unmarshal/unmarshal.go lacks certain index validation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3121", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3121", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3121", + }, + { + "type": "URL", + "value": "https://discuss.hashicorp.com/t/hcsec-2021-23-consul-exposed-to-denial-of-service-in-gogo-protobuf-dependency/29025", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-c3h9-896r-86jm", + }, + { + "type": "URL", + "value": "https://github.com/gogo/protobuf/commit/b03c65ea87cdc3521ede29f62fe3ce239267c1bc", + }, + { + "type": "URL", + "value": "https://github.com/gogo/protobuf/compare/v1.3.1...v1.3.2", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r68032132c0399c29d6cdc7bd44918535da54060a10a12b1591328bff@%3Cnotifications.skywalking.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r88d69555cb74a129a7bf84838073b61259b4a3830190e05a3b87994e@%3Ccommits.pulsar.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rc1e9ff22c5641d73701ba56362fb867d40ed287cca000b131dcf4a44@%3Ccommits.pulsar.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3121", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0053", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210219-0006/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3121", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.11.1", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-21698", + "installedVersion": "v1.8.0", + "packageName": "github.com/prometheus/client_golang", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8057", + "https://access.redhat.com/security/cve/CVE-2022-21698", + "https://bugzilla.redhat.com/2044628", + "https://bugzilla.redhat.com/2045880", + "https://bugzilla.redhat.com/2050648", + "https://bugzilla.redhat.com/2050742", + "https://bugzilla.redhat.com/2050743", + "https://bugzilla.redhat.com/2065290", + "https://bugzilla.redhat.com/2107342", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107376", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2107390", + "https://bugzilla.redhat.com/2107392", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044628", + "https://bugzilla.redhat.com/show_bug.cgi?id=2045880", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050648", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050742", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050743", + "https://bugzilla.redhat.com/show_bug.cgi?id=2055349", + "https://bugzilla.redhat.com/show_bug.cgi?id=2065290", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104367", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107342", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107376", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107390", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107392", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23648", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1962", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21673", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21698", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21702", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21703", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21713", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28131", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30631", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30633", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://errata.almalinux.org/9/ALSA-2022-8057.html", + "https://errata.rockylinux.org/RLSA-2022:8057", + "https://github.com/advisories/GHSA-cg3q-j54f-5p7p", + "https://github.com/prometheus/client_golang/pull/962", + "https://github.com/prometheus/client_golang/pull/987", + "https://github.com/prometheus/client_golang/releases/tag/v1.11.1", + "https://github.com/prometheus/client_golang/security/advisories/GHSA-cg3q-j54f-5p7p", + "https://linux.oracle.com/cve/CVE-2022-21698.html", + "https://linux.oracle.com/errata/ELSA-2022-8057.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2IK53GWZ475OQ6ENABKMJMTOBZG6LXUR/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2PFW6Q2LXXWTFRTMTRN4ZGADFRQPKJ3D/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36GUEPA5TPSC57DZTPYPBL6T7UPQ2FRH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3L6GDN5S5QZSCFKWD3GKL2RDZQ6B4UWA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4KDETHL5XCT6RZN2BBNOCEXRZ2W3SFU3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5OGNAFVXSMTTT2UPH6CS3IH6L3KM42Q7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7V7I72LSQ3IET3QJR6QPAVGJZ4CBDLN5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AK7CJBCGERCRXYUR2EWDSSDVAQMTAZGX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FY3N7H6VSDZM37B4SKM2PFFCUWU7QYWN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HLAQRRGNSO5MYCPAXGPH2OCSHOGHSQMQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KBMVIQFKQDSSTHVVJWJ4QH6TW3JVB7XZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MH6ALXEQXIFQRQFNJ5Y2MJ5DFPIX76VN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RN7JGC2LVHPEGSJYODFUV5FEKPBVG4D7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SASRKYHT5ZFSVMJUQUG3UAEQRJYGJKAR/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZKORFJTRRDJCWBTJPISKKCVMMMJBIRLG/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-21698", + "https://pkg.go.dev/vuln/GO-2022-0322", + "https://www.cve.org/CVERecord?id=CVE-2022-21698", + ], + }, + "category": "Vulnerability", + "description": "client_golang is the instrumentation library for Go applications in Prometheus, and the promhttp package in client_golang provides tooling around HTTP servers and clients. In client_golang prior to version 1.11.1, HTTP server is susceptible to a Denial of Service through unbounded cardinality, and potential memory exhaustion, when handling requests with non-standard HTTP methods. In order to be affected, an instrumented software must use any of \`promhttp.InstrumentHandler*\` middleware except \`RequestsInFlight\`; not filter any specific methods (e.g GET) before middleware; pass metric with \`method\` label name to our middleware; and not have any firewall/LB/proxy that filters away requests with unknown \`method\`. client_golang version 1.11.1 contains a patch for this issue. Several workarounds are available, including removing the \`method\` label name from counter/gauge used in the InstrumentHandler; turning off affected promhttp handlers; adding custom middleware before promhttp handler that will sanitize the request method given by Go http.Request; and using a reverse proxy or web application firewall, configured to only allow a limited set of methods.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "Denial of service using InstrumentHandlerCounter", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-21698", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8057", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-21698", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2044628", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2045880", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2050648", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2050742", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2050743", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2065290", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107342", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107376", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107390", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2044628", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2045880", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2050648", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2050742", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2050743", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2055349", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2065290", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104367", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107342", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107376", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107390", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107392", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23648", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1962", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21673", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21698", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21702", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21703", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21713", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28131", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30631", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30633", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8057.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8057", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-cg3q-j54f-5p7p", + }, + { + "type": "URL", + "value": "https://github.com/prometheus/client_golang/pull/962", + }, + { + "type": "URL", + "value": "https://github.com/prometheus/client_golang/pull/987", + }, + { + "type": "URL", + "value": "https://github.com/prometheus/client_golang/releases/tag/v1.11.1", + }, + { + "type": "URL", + "value": "https://github.com/prometheus/client_golang/security/advisories/GHSA-cg3q-j54f-5p7p", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-21698.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8057.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2IK53GWZ475OQ6ENABKMJMTOBZG6LXUR/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2PFW6Q2LXXWTFRTMTRN4ZGADFRQPKJ3D/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36GUEPA5TPSC57DZTPYPBL6T7UPQ2FRH/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3L6GDN5S5QZSCFKWD3GKL2RDZQ6B4UWA/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4KDETHL5XCT6RZN2BBNOCEXRZ2W3SFU3/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5OGNAFVXSMTTT2UPH6CS3IH6L3KM42Q7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7V7I72LSQ3IET3QJR6QPAVGJZ4CBDLN5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AK7CJBCGERCRXYUR2EWDSSDVAQMTAZGX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FY3N7H6VSDZM37B4SKM2PFFCUWU7QYWN/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HLAQRRGNSO5MYCPAXGPH2OCSHOGHSQMQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KBMVIQFKQDSSTHVVJWJ4QH6TW3JVB7XZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MH6ALXEQXIFQRQFNJ5Y2MJ5DFPIX76VN/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RN7JGC2LVHPEGSJYODFUV5FEKPBVG4D7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SASRKYHT5ZFSVMJUQUG3UAEQRJYGJKAR/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZKORFJTRRDJCWBTJPISKKCVMMMJBIRLG/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-21698", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0322", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-21698", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.4.0", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2018-1099", + "installedVersion": "v0.5.0-alpha.5.0.20200306183522-221f0cc107cb", + "packageName": "go.etcd.io/etcd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-1099", + "https://bugzilla.redhat.com/show_bug.cgi?id=1552717", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1099", + "https://github.com/advisories/GHSA-wf43-55jj-vwq8", + "https://github.com/coreos/etcd/commit/a7e5790c82039945639798ae9a3289fe787f5e56", + "https://github.com/coreos/etcd/issues/9353", + "https://github.com/etcd-io/etcd/issues/10479", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JX7QTIT465BQGRGNCE74RATRQLKT2QE4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UPGYHMSKDPW5GAMI7BEP3XQRVRLLBJKS/", + "https://nvd.nist.gov/vuln/detail/CVE-2018-1099", + "https://www.cve.org/CVERecord?id=CVE-2018-1099", + ], + }, + "category": "Vulnerability", + "description": "DNS rebinding vulnerability found in etcd 3.3.1 and earlier. An attacker can control his DNS records to direct to localhost, and trick the browser into sending requests to localhost (or any other address).", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "etcd: DNS rebinding vulnerability in etcd server", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-1099", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-1099", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1552717", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1099", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-wf43-55jj-vwq8", + }, + { + "type": "URL", + "value": "https://github.com/coreos/etcd/commit/a7e5790c82039945639798ae9a3289fe787f5e56", + }, + { + "type": "URL", + "value": "https://github.com/coreos/etcd/issues/9353", + }, + { + "type": "URL", + "value": "https://github.com/etcd-io/etcd/issues/10479", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JX7QTIT465BQGRGNCE74RATRQLKT2QE4/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UPGYHMSKDPW5GAMI7BEP3XQRVRLLBJKS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-1099", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-1099", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.5.0-alpha.5.0.20200423152442-f4b650b51dc4", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-15112", + "installedVersion": "v0.5.0-alpha.5.0.20200306183522-221f0cc107cb", + "packageName": "go.etcd.io/etcd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-15112", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15112", + "https://github.com/advisories/GHSA-m332-53r6-2w93", + "https://github.com/etcd-io/etcd/blob/master/security/SECURITY_AUDIT.pdf", + "https://github.com/etcd-io/etcd/commit/7d1cf640497cbcdfb932e619b13624112c7e3865", + "https://github.com/etcd-io/etcd/commit/f4b650b51dc4a53a8700700dc12e1242ac56ba07", + "https://github.com/etcd-io/etcd/pull/11793", + "https://github.com/etcd-io/etcd/security/advisories/GHSA-m332-53r6-2w93", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/L6B6R43Y7M3DCHWK3L3UVGE2K6WWECMP/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-15112", + "https://pkg.go.dev/vuln/GO-2020-0005", + "https://ubuntu.com/security/notices/USN-5628-1", + "https://ubuntu.com/security/notices/USN-5628-2", + "https://www.cve.org/CVERecord?id=CVE-2020-15112", + ], + }, + "category": "Vulnerability", + "description": "In etcd before versions 3.3.23 and 3.4.10, it is possible to have an entry index greater then the number of entries in the ReadAll method in wal/wal.go. This could cause issues when WAL entries are being read during consensus as an arbitrary etcd consensus participant could go down from a runtime panic when reading the entry.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "etcd: DoS in wal/wal.go", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-15112", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-15112", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15112", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-m332-53r6-2w93", + }, + { + "type": "URL", + "value": "https://github.com/etcd-io/etcd/blob/master/security/SECURITY_AUDIT.pdf", + }, + { + "type": "URL", + "value": "https://github.com/etcd-io/etcd/commit/7d1cf640497cbcdfb932e619b13624112c7e3865", + }, + { + "type": "URL", + "value": "https://github.com/etcd-io/etcd/commit/f4b650b51dc4a53a8700700dc12e1242ac56ba07", + }, + { + "type": "URL", + "value": "https://github.com/etcd-io/etcd/pull/11793", + }, + { + "type": "URL", + "value": "https://github.com/etcd-io/etcd/security/advisories/GHSA-m332-53r6-2w93", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/L6B6R43Y7M3DCHWK3L3UVGE2K6WWECMP/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-15112", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2020-0005", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5628-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5628-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-15112", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.5.0-alpha.5.0.20200423152442-f4b650b51dc4", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-15106", + "installedVersion": "v0.5.0-alpha.5.0.20200306183522-221f0cc107cb", + "packageName": "go.etcd.io/etcd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-15106", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15106", + "https://github.com/advisories/GHSA-p4g4-wgrh-qrg2", + "https://github.com/etcd-io/etcd/blob/master/security/SECURITY_AUDIT.pdf", + "https://github.com/etcd-io/etcd/commit/4571e528f49625d3de3170f219a45c3b3d38c675", + "https://github.com/etcd-io/etcd/commit/f4b650b51dc4a53a8700700dc12e1242ac56ba07", + "https://github.com/etcd-io/etcd/pull/11793", + "https://github.com/etcd-io/etcd/security/advisories/GHSA-p4g4-wgrh-qrg2", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/L6B6R43Y7M3DCHWK3L3UVGE2K6WWECMP/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-15106", + "https://pkg.go.dev/vuln/GO-2020-0005", + "https://ubuntu.com/security/notices/USN-5628-1", + "https://ubuntu.com/security/notices/USN-5628-2", + "https://www.cve.org/CVERecord?id=CVE-2020-15106", + ], + }, + "category": "Vulnerability", + "description": "In etcd before versions 3.3.23 and 3.4.10, a large slice causes panic in decodeRecord method. The size of a record is stored in the length field of a WAL file and no additional validation is done on this data. Therefore, it is possible to forge an extremely large frame size that can unintentionally panic at the expense of any RAFT participant trying to decode the WAL.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "etcd: Large slice causes panic in decodeRecord method", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-15106", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-15106", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15106", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p4g4-wgrh-qrg2", + }, + { + "type": "URL", + "value": "https://github.com/etcd-io/etcd/blob/master/security/SECURITY_AUDIT.pdf", + }, + { + "type": "URL", + "value": "https://github.com/etcd-io/etcd/commit/4571e528f49625d3de3170f219a45c3b3d38c675", + }, + { + "type": "URL", + "value": "https://github.com/etcd-io/etcd/commit/f4b650b51dc4a53a8700700dc12e1242ac56ba07", + }, + { + "type": "URL", + "value": "https://github.com/etcd-io/etcd/pull/11793", + }, + { + "type": "URL", + "value": "https://github.com/etcd-io/etcd/security/advisories/GHSA-p4g4-wgrh-qrg2", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/L6B6R43Y7M3DCHWK3L3UVGE2K6WWECMP/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-15106", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2020-0005", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5628-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5628-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-15106", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20201216223049-8b5274cf687f", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-29652", + "installedVersion": "v0.0.0-20201002170205-7f63de1d35b0", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-29652", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-29652", + "https://errata.almalinux.org/8/ALSA-2021-1796.html", + "https://github.com/advisories/GHSA-3vm4-22fp-5rfm", + "https://go-review.googlesource.com/c/crypto/+/278852", + "https://go.dev/cl/278852", + "https://go.googlesource.com/crypto/+/8b5274cf687fd9316b4108863654cc57385531e8", + "https://groups.google.com/g/golang-announce/c/ouZIlBimOsE?pli=1", + "https://linux.oracle.com/cve/CVE-2020-29652.html", + "https://linux.oracle.com/errata/ELSA-2021-1796.html", + "https://lists.apache.org/thread.html/r68032132c0399c29d6cdc7bd44918535da54060a10a12b1591328bff@%3Cnotifications.skywalking.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2020-29652", + "https://pkg.go.dev/vuln/GO-2021-0227", + "https://www.cve.org/CVERecord?id=CVE-2020-29652", + ], + }, + "category": "Vulnerability", + "description": "A nil pointer dereference in the golang.org/x/crypto/ssh component through v0.0.0-20201203163018-be400aefbc4c for Go allows remote attackers to cause a denial of service against SSH servers.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "golang: crypto/ssh: crafted authentication request can lead to nil pointer dereference", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-29652", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-29652", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-29652", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-1796.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-3vm4-22fp-5rfm", + }, + { + "type": "URL", + "value": "https://go-review.googlesource.com/c/crypto/+/278852", + }, + { + "type": "URL", + "value": "https://go.dev/cl/278852", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/crypto/+/8b5274cf687fd9316b4108863654cc57385531e8", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/ouZIlBimOsE?pli=1", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-29652.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-1796.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r68032132c0399c29d6cdc7bd44918535da54060a10a12b1591328bff@%3Cnotifications.skywalking.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-29652", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0227", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-29652", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20211202192323-5770296d904e", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-43565", + "installedVersion": "v0.0.0-20201002170205-7f63de1d35b0", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-43565", + "https://github.com/advisories/GHSA-gwc9-m7rh-j2ww", + "https://go.dev/cl/368814/", + "https://go.dev/issues/49932", + "https://groups.google.com/forum/#!forum/golang-announce", + "https://groups.google.com/g/golang-announce/c/2AR1sKiM-Qs", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43565", + "https://pkg.go.dev/vuln/GO-2022-0968", + "https://www.cve.org/CVERecord?id=CVE-2021-43565", + ], + }, + "category": "Vulnerability", + "description": "The x/crypto/ssh package before 0.0.0-20211202192323-5770296d904e of golang.org/x/crypto allows an attacker to panic an SSH server.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "golang.org/x/crypto: empty plaintext packet causes panic", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-43565", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-43565", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-gwc9-m7rh-j2ww", + }, + { + "type": "URL", + "value": "https://go.dev/cl/368814/", + }, + { + "type": "URL", + "value": "https://go.dev/issues/49932", + }, + { + "type": "URL", + "value": "https://groups.google.com/forum/#!forum/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/2AR1sKiM-Qs", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-43565", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0968", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-43565", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27191", + "installedVersion": "v0.0.0-20201002170205-7f63de1d35b0", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191", + ], + }, + "category": "Vulnerability", + "description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "crash in a golang.org/x/crypto/ssh server", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27191", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8008", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1939485", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989564", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989570", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989575", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2064702", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121453", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + }, + { + "type": "URL", + "value": "https://go.dev/cl/392355", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27191.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0356", + }, + { + "type": "URL", + "value": "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220429-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27191", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20210520170846-37e1c6afe023", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-33194", + "installedVersion": "v0.0.0-20200707034311-ab3426394381", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-33194", + "https://github.com/advisories/GHSA-83g2-8m93-v3w7", + "https://github.com/golang/net/commit/37e1c6afe02340126705deced573a85ab75209d7", + "https://go.dev/cl/311090", + "https://go.dev/issue/46288", + "https://go.googlesource.com/net/+/37e1c6afe02340126705deced573a85ab75209d7", + "https://groups.google.com/g/golang-announce/c/wPunbCPkWUg", + "https://groups.google.com/g/golang-dev/c/28x0nthP-c8/m/KqWVTjsnBAAJ", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4CHKSFMHZVOBCZSSVRE3UEYNKARTBMTM/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33194", + "https://pkg.go.dev/vuln/GO-2021-0238", + "https://www.cve.org/CVERecord?id=CVE-2021-33194", + ], + }, + "category": "Vulnerability", + "description": "golang.org/x/net before v0.0.0-20210520170846-37e1c6afe023 allows attackers to cause a denial of service (infinite loop) via crafted ParseFragment input.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "golang: x/net/html: infinite loop in ParseFragment", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33194", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33194", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-83g2-8m93-v3w7", + }, + { + "type": "URL", + "value": "https://github.com/golang/net/commit/37e1c6afe02340126705deced573a85ab75209d7", + }, + { + "type": "URL", + "value": "https://go.dev/cl/311090", + }, + { + "type": "URL", + "value": "https://go.dev/issue/46288", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/net/+/37e1c6afe02340126705deced573a85ab75209d7", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/wPunbCPkWUg", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/28x0nthP-c8/m/KqWVTjsnBAAJ", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4CHKSFMHZVOBCZSSVRE3UEYNKARTBMTM/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33194", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0238", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33194", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20211209124913-491a49abca63", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-44716", + "installedVersion": "v0.0.0-20200707034311-ab3426394381", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716", + ], + }, + "category": "Vulnerability", + "description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "golang: net/http: limit growth of header canonicalization cache", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-44716", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + }, + { + "type": "URL", + "value": "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + }, + { + "type": "URL", + "value": "https://go.dev/cl/369794", + }, + { + "type": "URL", + "value": "https://go.dev/issue/50058", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-44716.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-0001.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0288", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220121-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-44716", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20200707034311-ab3426394381", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20200707034311-ab3426394381", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20210428140749-89ef3d95e781", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-31525", + "installedVersion": "v0.0.0-20200707034311-ab3426394381", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-31525", + "https://github.com/advisories/GHSA-h86h-8ppg-mxmh", + "https://github.com/golang/go/issues/45710", + "https://go.dev/cl/313069", + "https://go.dev/issue/45710", + "https://go.googlesource.com/net/+/89ef3d95e781148a0951956029c92a211477f7f9", + "https://groups.google.com/g/golang-announce/c/cu9SP4eSXMc", + "https://linux.oracle.com/cve/CVE-2021-31525.html", + "https://linux.oracle.com/errata/ELSA-2021-3076.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ISRZZ6NY5R2TBYE72KZFOCO25TEUQTBF/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-31525", + "https://pkg.go.dev/vuln/GO-2022-0236", + "https://security.gentoo.org/glsa/202208-02", + "https://www.cve.org/CVERecord?id=CVE-2021-31525", + ], + }, + "category": "Vulnerability", + "description": "net/http in Go before 1.15.12 and 1.16.x before 1.16.4 allows remote attackers to cause a denial of service (panic) via a large header to ReadRequest or ReadResponse. Server, Transport, and Client can each be affected in some configurations.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "golang: net/http: panic in ReadRequest and ReadResponse when reading a very large header", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-31525", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-31525", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-h86h-8ppg-mxmh", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/45710", + }, + { + "type": "URL", + "value": "https://go.dev/cl/313069", + }, + { + "type": "URL", + "value": "https://go.dev/issue/45710", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/net/+/89ef3d95e781148a0951956029c92a211477f7f9", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/cu9SP4eSXMc", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-31525.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-3076.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ISRZZ6NY5R2TBYE72KZFOCO25TEUQTBF/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-31525", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0236", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-31525", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20200707034311-ab3426394381", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220412211240-33da011f77ad", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29526", + "installedVersion": "v0.0.0-20201015000850-e3ed0017c211", + "packageName": "golang.org/x/sys", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526", + ], + }, + "category": "Vulnerability", + "description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "faccessat checks wrong group", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29526", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/52313", + }, + { + "type": "URL", + "value": "https://go.dev/cl/399539", + }, + { + "type": "URL", + "value": "https://go.dev/cl/400074", + }, + { + "type": "URL", + "value": "https://go.dev/issue/52313", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29526.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5337.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0493", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29526", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.7", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-38561", + "installedVersion": "v0.3.3", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561", + ], + }, + "category": "Vulnerability", + "description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-38561", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://deps.dev/advisory/OSV/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + }, + { + "type": "URL", + "value": "https://go.dev/cl/340830", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/golang.org/x/text/language", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-38561", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.3", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.20.0-alpha.2", + "foundIn": "Target: 'coredns' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-8565", + "installedVersion": "v0.19.2", + "packageName": "k8s.io/client-go", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-8565", + "https://github.com/advisories/GHSA-8cfg-vx93-jvxw", + "https://github.com/kubernetes/kubernetes/commit/e99df0e5a75eb6e86123b56d53e9b7ca0fd00419", + "https://github.com/kubernetes/kubernetes/issues/95623", + "https://github.com/kubernetes/kubernetes/pull/95316", + "https://groups.google.com/g/kubernetes-announce/c/ScdmyORnPDk", + "https://groups.google.com/g/kubernetes-security-discuss/c/vm-HcrFUOCs/m/36utxAM5CwAJ", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8565", + "https://pkg.go.dev/vuln/GO-2021-0064", + "https://www.cve.org/CVERecord?id=CVE-2020-8565", + ], + }, + "category": "Vulnerability", + "description": "In Kubernetes, if the logging level is set to at least 9, authorization and bearer tokens will be written to log files. This can occur both in API server logs and client tool output like kubectl. This affects <= v1.19.3, <= v1.18.10, <= v1.17.13, < v1.20.0-alpha2.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": undefined, + "name": "kubernetes: Incomplete fix for CVE-2019-11250 allows for token leak in logs when logLevel >= 9", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-8565", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-8565", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-8cfg-vx93-jvxw", + }, + { + "type": "URL", + "value": "https://github.com/kubernetes/kubernetes/commit/e99df0e5a75eb6e86123b56d53e9b7ca0fd00419", + }, + { + "type": "URL", + "value": "https://github.com/kubernetes/kubernetes/issues/95623", + }, + { + "type": "URL", + "value": "https://github.com/kubernetes/kubernetes/pull/95316", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/kubernetes-announce/c/ScdmyORnPDk", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/kubernetes-security-discuss/c/vm-HcrFUOCs/m/36utxAM5CwAJ", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-8565", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0064", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-8565", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'coredns' of Deployment 'coredns' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'coredns' of Deployment 'coredns' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'coredns' of Deployment 'coredns' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'coredns' of Deployment 'coredns' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV022", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv022", + ], + }, + "category": "Misconfiguration", + "description": "Adding NET_RAW or capabilities beyond the default set must be disallowed.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Do not set spec.containers[*].securityContext.capabilities.add and spec.initContainers[*].securityContext.capabilities.add", + "name": "Non-default capabilities added(Container 'coredns' of Deployment 'coredns' should not set 'securityContext.capabilities.add')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv022", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/coredns' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'Deployment' / Name: 'coredns'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb10u7", + "foundIn": "Target: 'k8s.gcr.io/kube-apiserver:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3134-1", + "installedVersion": "2021a-0+deb10u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb10u8", + "foundIn": "Target: 'k8s.gcr.io/kube-apiserver:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3161-1", + "installedVersion": "2021a-0+deb10u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb10u10", + "foundIn": "Target: 'k8s.gcr.io/kube-apiserver:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3366-1", + "installedVersion": "2021a-0+deb10u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb10u11", + "foundIn": "Target: 'k8s.gcr.io/kube-apiserver:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3412-1", + "installedVersion": "2021a-0+deb10u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0001", + ], + }, + "category": "Misconfiguration", + "description": "Disable anonymous requests to the API server.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set '--anonymous-auth' to 'false'.", + "name": "Ensure that the --anonymous-auth argument is set to false(Ensure that the --anonymous-auth argument is set to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0001", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0006", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0006", + ], + }, + "category": "Misconfiguration", + "description": "Verify kubelet's certificate before establishing connection.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Follow the Kubernetes documentation and setup the TLS connection between the apiserver and kubelets. ", + "name": "Ensure that the --kubelet-certificate-authority argument is set as appropriate(Ensure that the --kubelet-certificate-authority argument is set as appropriate)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0006", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0010", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0010", + ], + }, + "category": "Misconfiguration", + "description": "Limit the rate at which the API server accepts requests.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Follow the Kubernetes documentation and set the desired limits in a configuration file. Then, edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml and set the below parameters.", + "name": "Ensure that the admission control plugin EventRateLimit is set(Ensure that the admission control plugin EventRateLimit is set)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0010", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV0012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/ksv0012", + ], + }, + "category": "Misconfiguration", + "description": "Always pull images.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --enable-admission-plugins parameter to include AlwaysPullImages.", + "name": "Ensure that the admission control plugin AlwaysPullImages is set(Ensure that the admission control plugin AlwaysPullImages is set)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv0012", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0013", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0013", + ], + }, + "category": "Misconfiguration", + "description": "The SecurityContextDeny admission controller can be used to deny pods which make use of some SecurityContext fields which could allow for privilege escalation in the cluster. This should be used where PodSecurityPolicy is not in place within the cluster.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --enable-admission-plugins parameter to include SecurityContextDeny, unless PodSecurityPolicy is already in place.", + "name": "Ensure that the admission control plugin SecurityContextDeny is set if PodSecurityPolicy is not used(Ensure that the admission control plugin SecurityContextDeny is set if PodSecurityPolicy is not used)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0013", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0018", + ], + }, + "category": "Misconfiguration", + "description": "Disable profiling, if not needed.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the below parameter.", + "name": "Ensure that the --profiling argument is set to false(Ensure that the --profiling argument is set to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0018", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0019", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0019", + ], + }, + "category": "Misconfiguration", + "description": "Enable auditing on the Kubernetes API Server and set the desired audit log path.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-path parameter.", + "name": "Ensure that the --audit-log-path argument is set(Ensure that the --audit-log-path argument is set)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0019", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0020", + ], + }, + "category": "Misconfiguration", + "description": "Retain the logs for at least 30 days or as appropriate.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-maxage parameter to 30 or as an appropriate number of days.", + "name": "Ensure that the --audit-log-maxage argument is set to 30 or as appropriate(Ensure that the --audit-log-maxage argument is set to 30 or as appropriate)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0020", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0021", + ], + }, + "category": "Misconfiguration", + "description": "Retain 10 or an appropriate number of old log files.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-maxbackup parameter to 10 or to an appropriate value.", + "name": "Ensure that the --audit-log-maxbackup argument is set to 10 or as appropriate(Ensure that the --audit-log-maxbackup argument is set to 10 or as appropriate)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0021", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0022", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0022", + ], + }, + "category": "Misconfiguration", + "description": "Rotate log files on reaching 100 MB or as appropriate.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-maxsize parameter to an appropriate size in MB", + "name": "Ensure that the --audit-log-maxsize argument is set to 100 or as appropriate(Ensure that the --audit-log-maxsize argument is set to 100 or as appropriate)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0022", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV009", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009", + ], + }, + "category": "Misconfiguration", + "description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Do not set 'spec.template.spec.hostNetwork' to true.", + "name": "Access to host network(Pod 'kube-apiserver-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv009", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV023", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023", + ], + }, + "category": "Misconfiguration", + "description": "HostPath volumes must be forbidden.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Do not set 'spec.volumes[*].hostPath'.", + "name": "hostPath volumes mounted(Pod 'kube-apiserver-kind-control-plane' should not set 'spec.template.volumes.hostPath')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv023", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-apiserver-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-apiserver-kind-control-plane'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.8.2-beta.1", + "foundIn": "Target: 'dashboard' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2023-2253", + "installedVersion": "v2.8.1+incompatible", + "packageName": "github.com/docker/distribution", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-2253", + "https://bugzilla.redhat.com/show_bug.cgi?id=2189886", + "https://github.com/advisories/GHSA-hqxw-f8mx-cpmw", + "https://github.com/distribution/distribution/commit/f55a6552b006a381d9167e328808565dd2bf77dc", + "https://github.com/distribution/distribution/security/advisories/GHSA-hqxw-f8mx-cpmw", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2253", + "https://www.cve.org/CVERecord?id=CVE-2023-2253", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the \`/v2/_catalog\` endpoint in distribution/distribution, which accepts a parameter to control the maximum number of records returned (query string: \`n\`). This vulnerability allows a malicious user to submit an unreasonably large value for \`n,\` causing the allocation of a massive string array, possibly causing a denial of service through excessive use of memory.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": undefined, + "name": "DoS from malicious API request", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2253", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2253", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2189886", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-hqxw-f8mx-cpmw", + }, + { + "type": "URL", + "value": "https://github.com/distribution/distribution/commit/f55a6552b006a381d9167e328808565dd2bf77dc", + }, + { + "type": "URL", + "value": "https://github.com/distribution/distribution/security/advisories/GHSA-hqxw-f8mx-cpmw", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2253", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2253", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'dashboard' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.1.1-0.20221104162952-702349b0e862", + "foundIn": "Target: 'dashboard' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41721", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41721", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41721", + "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + "https://go.dev/cl/447396", + "https://go.dev/issue/56352", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + "https://pkg.go.dev/vuln/GO-2023-1495", + "https://www.cve.org/CVERecord?id=CVE-2022-41721", + ], + }, + "category": "Vulnerability", + "description": "A request smuggling attack is possible when using MaxBytesHandler. When using MaxBytesHandler, the body of an HTTP request is not fully consumed. When the server attempts to read HTTP2 frames from the connection, it will instead be reading the body of the HTTP request, which could be attacker-manipulated to represent arbitrary HTTP2 requests.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": undefined, + "name": "request smuggling", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41721", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + }, + { + "type": "URL", + "value": "https://go.dev/cl/447396", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56352", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1495", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41721", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'dashboard' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'dashboard' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'dashboard' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.7", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Dockerfile' / Class: 'config' / Type: 'dockerfile'", + "id": "DS005", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://docs.docker.com/engine/reference/builder/#add", + "https://avd.aquasec.com/misconfig/ds005", + ], + }, + "category": "Misconfiguration", + "description": "You should use COPY instead of ADD unless you want to extract a tar file. Note that an ADD command will extract a tar file, which adds the risk of Zip-based vulnerabilities. Accordingly, it is advised to use a COPY command, which does not extract tar files.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": "Use COPY instead of ADD", + "name": "ADD instead of COPY(Consider using 'COPY . /' command instead of 'ADD . /')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ds005", + }, + { + "type": "URL", + "value": "https://docs.docker.com/engine/reference/builder/#add", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Dockerfile' / Class: 'config' / Type: 'dockerfile'", + "id": "DS026", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://blog.aquasec.com/docker-security-best-practices", + "https://avd.aquasec.com/misconfig/ds026", + ], + }, + "category": "Misconfiguration", + "description": "You should add HEALTHCHECK instruction in your docker container images to perform the health check on running containers.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": "Add HEALTHCHECK instruction in Dockerfile", + "name": "No HEALTHCHECK defined(Add HEALTHCHECK instruction in your Dockerfile)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ds026", + }, + { + "type": "URL", + "value": "https://blog.aquasec.com/docker-security-best-practices", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/kubernetes-dashboard' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/kubernetes-dashboard' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/kubernetes-dashboard' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/kubernetes-dashboard' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV015", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015", + ], + }, + "category": "Misconfiguration", + "description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": "Set 'containers[].resources.requests.cpu'.", + "name": "CPU requests not specified(Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'resources.requests.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv015", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/kubernetes-dashboard' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/kubernetes-dashboard' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/kubernetes-dashboard' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/kubernetes-dashboard' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/kubernetes-dashboard' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Deployment' / Name: 'kubernetes-dashboard'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3374", + "installedVersion": "2.2.4", + "packageName": "apt", + "references": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374", + ], + }, + "category": "Vulnerability", + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + }, + { + "type": "URL", + "value": "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + }, + { + "type": "URL", + "value": "https://seclists.org/fulldisclosure/2011/Sep/221", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2011-3374", + }, + { + "type": "URL", + "value": "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2011-3374", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3715", + "installedVersion": "5.1-2+deb11u1", + "packageName": "bash", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0340", + "https://access.redhat.com/security/cve/CVE-2022-3715", + "https://bugzilla.redhat.com/2126720", + "https://bugzilla.redhat.com/show_bug.cgi?id=2126720", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3715", + "https://errata.almalinux.org/9/ALSA-2023-0340.html", + "https://errata.rockylinux.org/RLSA-2023:0340", + "https://linux.oracle.com/cve/CVE-2022-3715.html", + "https://linux.oracle.com/errata/ELSA-2023-0340.html", + "https://lists.gnu.org/archive/html/bug-bash/2022-08/msg00147.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3715", + "https://www.cve.org/CVERecord?id=CVE-2022-3715", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the bash package, where a heap-buffer overflow can occur in valid parameter_transform. This issue may lead to memory problems.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "a heap-buffer-overflow in valid_parameter_transform", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3715", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0340", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3715", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2126720", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2126720", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3715", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0340.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0340", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3715.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0340.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-bash/2022-08/msg00147.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3715", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3715", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "1:2.36.1-8+deb11u1", + "packageName": "bsdutils", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2016-2781", + "installedVersion": "8.32-4+b1", + "packageName": "coreutils", + "references": [ + "http://seclists.org/oss-sec/2016/q1/452", + "http://www.openwall.com/lists/oss-security/2016/02/28/2", + "http://www.openwall.com/lists/oss-security/2016/02/28/3", + "https://access.redhat.com/security/cve/CVE-2016-2781", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lore.kernel.org/patchwork/patch/793178/", + "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + "https://www.cve.org/CVERecord?id=CVE-2016-2781", + ], + }, + "category": "Vulnerability", + "description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "coreutils: Non-privileged session can escape to the parent session in chroot", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2016-2781", + }, + { + "type": "URL", + "value": "http://seclists.org/oss-sec/2016/q1/452", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2016/02/28/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2016/02/28/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/patchwork/patch/793178/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2016-2781", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-18018", + "installedVersion": "8.32-4+b1", + "packageName": "coreutils", + "references": [ + "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + "https://access.redhat.com/security/cve/CVE-2017-18018", + "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + "https://www.cve.org/CVERecord?id=CVE-2017-18018", + ], + }, + "category": "Vulnerability", + "description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX "-R -L" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "coreutils: race condition vulnerability in chown and chgrp", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-18018", + }, + { + "type": "URL", + "value": "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-18018", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-18018", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "7.74.0-1.3+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-32221", + "installedVersion": "7.74.0-1.3+deb11u2", + "packageName": "curl", + "references": [ + "http://seclists.org/fulldisclosure/2023/Jan/19", + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://www.openwall.com/lists/oss-security/2023/05/17/4", + "https://access.redhat.com/errata/RHSA-2023:0333", + "https://access.redhat.com/security/cve/CVE-2022-32221", + "https://bugzilla.redhat.com/2135411", + "https://bugzilla.redhat.com/show_bug.cgi?id=2135411", + "https://curl.se/docs/CVE-2022-32221.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32221", + "https://errata.almalinux.org/9/ALSA-2023-0333.html", + "https://errata.rockylinux.org/RLSA-2023:0333", + "https://hackerone.com/reports/1704017", + "https://linux.oracle.com/cve/CVE-2022-32221.html", + "https://linux.oracle.com/errata/ELSA-2023-0333.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32221", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20230110-0006/", + "https://security.netapp.com/advisory/ntap-20230208-0002/", + "https://support.apple.com/kb/HT213604", + "https://support.apple.com/kb/HT213605", + "https://ubuntu.com/security/notices/USN-5702-1", + "https://ubuntu.com/security/notices/USN-5702-2", + "https://ubuntu.com/security/notices/USN-5823-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32221", + "https://www.debian.org/security/2023/dsa-5330", + ], + }, + "category": "Vulnerability", + "description": "When doing HTTP(S) transfers, libcurl might erroneously use the read callback (\`CURLOPT_READFUNCTION\`) to ask for data to send, even when the \`CURLOPT_POSTFIELDS\` option has been set, if the same handle previously was used to issue a \`PUT\` request which used that callback. This flaw may surprise the application and cause it to misbehave and either send off the wrong data or use memory after free or similar in the subsequent \`POST\` request. The problem exists in the logic for a reused handle when it is changed from a PUT to a POST.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "POST following PUT confusion", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32221", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2023/Jan/19", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2023/Jan/20", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/17/4", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0333", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32221", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2135411", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2135411", + }, + { + "type": "URL", + "value": "https://curl.se/docs/CVE-2022-32221.html", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32221", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0333.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0333", + }, + { + "type": "URL", + "value": "https://hackerone.com/reports/1704017", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-32221.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0333.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32221", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202212-01", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230110-0006/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230208-0002/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213604", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213605", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5702-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5702-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5823-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32221", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5330", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-23914", + "installedVersion": "7.74.0-1.3+deb11u2", + "packageName": "curl", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-23914", + "https://curl.se/docs/CVE-2023-23914.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23914", + "https://hackerone.com/reports/1813864", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23914", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23914", + ], + }, + "category": "Vulnerability", + "description": "A cleartext transmission of sensitive information vulnerability exists in curl n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libk5crypto3", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libk5crypto3", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5-3", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5-3", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.18.3-6+deb11u3", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-42898", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5support0", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html", + ], + }, + "category": "Vulnerability", + "description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has "a similar bug."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "integer overflow vulnerabilities in PAC parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-42898", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8637", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + }, + { + "type": "URL", + "value": "https://bugzilla.samba.org/show_bug.cgi?id=15203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8637.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8637", + }, + { + "type": "URL", + "value": "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + }, + { + "type": "URL", + "value": "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-42898.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-12104.html", + }, + { + "type": "URL", + "value": "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230216-0008/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230223-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5800-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5822-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5828-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5936-1", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/advisories/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.19/", + }, + { + "type": "URL", + "value": "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-42898", + }, + { + "type": "URL", + "value": "https://www.samba.org/samba/security/CVE-2022-42898.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-5709", + "installedVersion": "1.18.3-6+deb11u1", + "packageName": "libkrb5support0", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable "dbentry->n_key_data" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a "u4" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "krb5: integer overflow in dbentry->n_key_data in kadmin/dbutil/dump.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-5709", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-5709", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-2953", + "installedVersion": "2.4.57+dfsg-3+deb11u1", + "packageName": "libldap-2.4-2", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-2953", + "https://bugs.openldap.org/show_bug.cgi?id=9904", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2953", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2953", + "https://www.cve.org/CVERecord?id=CVE-2023-2953", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in openldap. This security flaw causes a null pointer dereference in ber_memalloc_x() function.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "null pointer dereference in ber_memalloc_x function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2953", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2953", + }, + { + "type": "URL", + "value": "https://bugs.openldap.org/show_bug.cgi?id=9904", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2953", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2953", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2953", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2015-3276", + "installedVersion": "2.4.57+dfsg-3+deb11u1", + "packageName": "libldap-2.4-2", + "references": [ + "http://rhn.redhat.com/errata/RHSA-2015-2131.html", + "http://www.oracle.com/technetwork/topics/security/linuxbulletinoct2015-2719645.html", + "http://www.securitytracker.com/id/1034221", + "https://access.redhat.com/security/cve/CVE-2015-3276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1238322", + "https://linux.oracle.com/cve/CVE-2015-3276.html", + "https://linux.oracle.com/errata/ELSA-2015-2131.html", + "https://nvd.nist.gov/vuln/detail/CVE-2015-3276", + "https://www.cve.org/CVERecord?id=CVE-2015-3276", + ], + }, + "category": "Vulnerability", + "description": "The nss_parse_ciphers function in libraries/libldap/tls_m.c in OpenLDAP does not properly parse OpenSSL-style multi-keyword mode cipher strings, which might cause a weaker than intended cipher to be used and allow remote attackers to have unspecified impact via unknown vectors.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "incorrect multi-keyword mode cipherstring parsing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2015-3276", + }, + { + "type": "URL", + "value": "http://rhn.redhat.com/errata/RHSA-2015-2131.html", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/linuxbulletinoct2015-2719645.html", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id/1034221", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2015-3276", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1238322", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2015-3276.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2015-2131.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2015-3276", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2015-3276", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-14159", + "installedVersion": "2.4.57+dfsg-3+deb11u1", + "packageName": "libldap-2.4-2", + "references": [ + "http://www.openldap.org/its/index.cgi?findid=8703", + "https://access.redhat.com/security/cve/CVE-2017-14159", + "https://nvd.nist.gov/vuln/detail/CVE-2017-14159", + "https://www.cve.org/CVERecord?id=CVE-2017-14159", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "slapd in OpenLDAP 2.4.45 and earlier creates a PID file after dropping privileges to a non-root account, which might allow local users to kill arbitrary processes by leveraging access to this non-root account for PID file modification before a root script executes a "kill \`cat /pathname\`" command, as demonstrated by openldap-initscript.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "openldap: Privilege escalation via PID file manipulation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-14159", + }, + { + "type": "URL", + "value": "http://www.openldap.org/its/index.cgi?findid=8703", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-14159", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-14159", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-14159", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-17740", + "installedVersion": "2.4.57+dfsg-3+deb11u1", + "packageName": "libldap-2.4-2", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00053.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00058.html", + "http://www.openldap.org/its/index.cgi/Incoming?id=8759", + "https://access.redhat.com/security/cve/CVE-2017-17740", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + "https://nvd.nist.gov/vuln/detail/CVE-2017-17740", + "https://www.cve.org/CVERecord?id=CVE-2017-17740", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "contrib/slapd-modules/nops/nops.c in OpenLDAP through 2.4.45, when both the nops module and the memberof overlay are enabled, attempts to free a buffer that was allocated on the stack, which allows remote attackers to cause a denial of service (slapd crash) via a member MODDN operation.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "openldap: contrib/slapd-modules/nops/nops.c attempts to free stack buffer allowing remote attackers to cause a denial of service", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-17740", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00053.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00058.html", + }, + { + "type": "URL", + "value": "http://www.openldap.org/its/index.cgi/Incoming?id=8759", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-17740", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-17740", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-17740", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-15719", + "installedVersion": "2.4.57+dfsg-3+deb11u1", + "packageName": "libldap-2.4-2", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00033.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00059.html", + "https://access.redhat.com/errata/RHBA-2019:3674", + "https://access.redhat.com/security/cve/CVE-2020-15719", + "https://bugs.openldap.org/show_bug.cgi?id=9266", + "https://bugzilla.redhat.com/show_bug.cgi?id=1740070", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + "https://nvd.nist.gov/vuln/detail/CVE-2020-15719", + "https://www.cve.org/CVERecord?id=CVE-2020-15719", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "libldap in certain third-party OpenLDAP packages has a certificate-validation flaw when the third-party package is asserting RFC6125 support. It considers CN even when there is a non-matching subjectAltName (SAN). This is fixed in, for example, openldap-2.4.46-10.el8 in Red Hat Enterprise Linux.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "openldap: Certificate validation incorrectly matches name against CN-ID", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-15719", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00033.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00059.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHBA-2019:3674", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-15719", + }, + { + "type": "URL", + "value": "https://bugs.openldap.org/show_bug.cgi?id=9266", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1740070", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-15719", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-15719", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "2.36.1-8+deb11u1", + "packageName": "libmount1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "6.2+20201114-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-29458", + "installedVersion": "6.2+20201114-2", + "packageName": "libncurses6", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458", + ], + }, + "category": "Vulnerability", + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "ncurses: segfaulting OOB read", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29458", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/41", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#t20220416", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213488", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5477-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29458", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29491", + "installedVersion": "6.2+20201114-2", + "packageName": "libncurses6", + "references": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4", + ], + }, + "category": "Vulnerability", + "description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Local users can trigger security-relevant memory corruption via malformed data", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29491", + }, + { + "type": "URL", + "value": "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/10", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/11", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230517-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/12/5", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/13/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "6.2+20201114-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-29458", + "installedVersion": "6.2+20201114-2", + "packageName": "libncursesw6", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458", + ], + }, + "category": "Vulnerability", + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "ncurses: segfaulting OOB read", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29458", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/41", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#t20220416", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213488", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5477-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29458", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29491", + "installedVersion": "6.2+20201114-2", + "packageName": "libncursesw6", + "references": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4", + ], + }, + "category": "Vulnerability", + "description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Local users can trigger security-relevant memory corruption via malformed data", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29491", + }, + { + "type": "URL", + "value": "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/10", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/11", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230517-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/12/5", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/13/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "10.36-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1586", + "installedVersion": "10.36-2", + "packageName": "libpcre2-8-0", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:5809", + "https://access.redhat.com/security/cve/CVE-2022-1586", + "https://bugzilla.redhat.com/2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1586", + "https://errata.almalinux.org/8/ALSA-2022-5809.html", + "https://errata.rockylinux.org/RLSA-2022:5809", + "https://github.com/PCRE2Project/pcre2/commit/50a51cb7e67268e6ad417eb07c9de9bfea5cc55a,", + "https://github.com/PCRE2Project/pcre2/commit/d4fa336fbcc388f89095b184ba6d99422cfc676c", + "https://linux.oracle.com/cve/CVE-2022-1586.html", + "https://linux.oracle.com/errata/ELSA-2022-5809.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1586", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1586", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre2: Out-of-bounds read in compile_xclass_matchingpath in pcre2_jit_compile.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1586", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:5809", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1586", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2077976", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077976", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077976,", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1586", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2022-5809.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5809", + }, + { + "type": "URL", + "value": "https://github.com/PCRE2Project/pcre2/commit/50a51cb7e67268e6ad417eb07c9de9bfea5cc55a,", + }, + { + "type": "URL", + "value": "https://github.com/PCRE2Project/pcre2/commit/d4fa336fbcc388f89095b184ba6d99422cfc676c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1586.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5809.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1586", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221028-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1586", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "10.36-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1587", + "installedVersion": "10.36-2", + "packageName": "libpcre2-8-0", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-1587", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077983,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1587", + "https://github.com/PCRE2Project/pcre2/commit/03654e751e7f0700693526b67dfcadda6b42c9d0", + "https://linux.oracle.com/cve/CVE-2022-1587.html", + "https://linux.oracle.com/errata/ELSA-2022-5251.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1587", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1587", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre2: Out-of-bounds read in get_recurse_data_length in pcre2_jit_compile.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1587", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1587", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077983,", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1587", + }, + { + "type": "URL", + "value": "https://github.com/PCRE2Project/pcre2/commit/03654e751e7f0700693526b67dfcadda6b42c9d0", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1587.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5251.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1587", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221028-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5627-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1587", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-11164", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://openwall.com/lists/oss-security/2017/07/11/3", + "http://www.openwall.com/lists/oss-security/2023/04/11/1", + "http://www.openwall.com/lists/oss-security/2023/04/12/1", + "http://www.securityfocus.com/bid/99575", + "https://access.redhat.com/security/cve/CVE-2017-11164", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + "https://www.cve.org/CVERecord?id=CVE-2017-11164", + ], + }, + "category": "Vulnerability", + "description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-11164", + }, + { + "type": "URL", + "value": "http://openwall.com/lists/oss-security/2017/07/11/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/11/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/12/1", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/99575", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-11164", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-16231", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + "http://seclists.org/fulldisclosure/2018/Dec/33", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101688", + "https://access.redhat.com/security/cve/CVE-2017-16231", + "https://bugs.exim.org/show_bug.cgi?id=2047", + "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + "https://www.cve.org/CVERecord?id=CVE-2017-16231", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-16231", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2018/Dec/33", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/11", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/7", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/8", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/101688", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-16231", + }, + { + "type": "URL", + "value": "https://bugs.exim.org/show_bug.cgi?id=2047", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-16231", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-7245", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7245", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7245", + ], + }, + "category": "Vulnerability", + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-7245", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/97067", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2018:2486", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-7245", + }, + { + "type": "URL", + "value": "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201710-25", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-7245", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-7246", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7246", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7246", + ], + }, + "category": "Vulnerability", + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-7246", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/97067", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2018:2486", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-7246", + }, + { + "type": "URL", + "value": "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201710-25", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-7246", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-20838", + "installedVersion": "2:8.39-13", + "packageName": "libpcre3", + "references": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://access.redhat.com/security/cve/CVE-2019-20838", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2019-20838.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2019-20838", + "https://www.pcre.org/original/changelog.txt", + ], + }, + "category": "Vulnerability", + "description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "pcre: Buffer over-read in JIT when UTF is disabled and \\X or \\R has fixed quantifier greater than 1", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-20838", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2020/Dec/32", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/Feb/14", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/717920", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4373", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-20838.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT211931", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212147", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5425-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://www.pcre.org/original/changelog.txt", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36084", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36084", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + "https://linux.oracle.com/cve/CVE-2021-36084.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36084", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "libsepol: use-after-free in __cil_verify_classperms()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36084", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36084.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36084", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36085", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36085", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + "https://linux.oracle.com/cve/CVE-2021-36085.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36085", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "libsepol: use-after-free in __cil_verify_classperms()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36085", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36085.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36085", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36086", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36086", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + "https://linux.oracle.com/cve/CVE-2021-36086.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36086", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "use-after-free in cil_reset_classpermission()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36086", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36086.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36086", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36087", + "installedVersion": "3.1-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36087", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + "https://linux.oracle.com/cve/CVE-2021-36087.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36087", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "libsepol: heap-based buffer overflow in ebitmap_match_any()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36087", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36087.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36087", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "2.36.1-8+deb11u1", + "packageName": "libsmartcols1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4450", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (e.g. "CERTIFICATE"), any header data and the payload data. If the function succeeds then the "name_out", "header" and "data" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "double free after calling PEM_read_bio_ex", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4450", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4450.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0215", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The public API function BIO_new_NDEF is a helper function used for streaming +ASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the +SMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by +end user applications. + +The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter +BIO onto the front of it to form a BIO chain, and then returns the new head of +the BIO chain to the caller. Under certain conditions, for example if a CMS +recipient public key is invalid, the new filter BIO is freed and the function +returns a NULL result indicating a failure. However, in this case, the BIO chain +is not properly cleaned up and the BIO passed by the caller still retains +internal pointers to the previously freed filter BIO. If the caller then goes on +to call BIO_pop() on the BIO then a use-after-free will occur. This will most +likely result in a crash. + + + +This scenario occurs directly in the internal function B64_write_ASN1() which +may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on +the BIO. This internal function is in turn called by the public API functions +PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, +SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. + +Other public API functions that may be impacted by this include +i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and +i2d_PKCS7_bio_stream. + +The OpenSSL cms and smime command line applications are similarly affected. + + + +", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "use-after-free following BIO_new_NDEF", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0215", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0215.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0007/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0286", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "X.400 address type confusion in X.509 GeneralName", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0286.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0464", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://linux.oracle.com/cve/CVE-2023-0464.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt", + ], + }, + "category": "Vulnerability", + "description": "A security vulnerability has been identified in all supported versions + +of OpenSSL related to the verification of X.509 certificate chains +that include policy constraints. Attackers may be able to exploit this +vulnerability by creating a malicious certificate chain that triggers +exponential use of computational resources, leading to a denial-of-service +(DoS) attack on affected systems. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0464", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0464.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230322.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-2650", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://linux.oracle.com/cve/CVE-2023-2650.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://ubuntu.com/security/notices/USN-6188-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-2650.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6188-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2097", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt", + ], + }, + "category": "Vulnerability", + "description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "AES OCB fails to encrypt some bytes", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2097", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2097.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220715-0011/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230420-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5502-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5343", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220705.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4304", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "timing attack in RSA Decryption implementation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4304", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4304.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0465", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://linux.oracle.com/cve/CVE-2023-0465.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "Applications that use a non-default option when verifying certificates may be +vulnerable to an attack from a malicious CA to circumvent certain checks. + +Invalid certificate policies in leaf certificates are silently ignored by +OpenSSL and other certificate policy checks are skipped for that certificate. +A malicious CA could use this to deliberately assert invalid certificate policies +in order to circumvent policy checking on the certificate altogether. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Invalid certificate policies in leaf certificates are silently ignored", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0465", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0465.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0466", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://linux.oracle.com/cve/CVE-2023-0466.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "The function X509_VERIFY_PARAM_add0_policy() is documented to +implicitly enable the certificate policy check when doing certificate +verification. However the implementation of the function does not +enable the check which allows certificates with invalid or incorrect +policies to pass the certificate verification. + +As suddenly enabling the policy check could break existing deployments it was +decided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy() +function. + +Instead the applications that require OpenSSL to perform certificate +policy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly +enable the policy check by calling X509_VERIFY_PARAM_set_flags() with +the X509_V_FLAG_POLICY_CHECK flag argument. + +Certificate policy checks are disabled by default in OpenSSL and are not +commonly used by applications.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Certificate policy check not enabled", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0466", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0466.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-6755", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + ], + }, + "category": "Vulnerability", + "description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain "skeleton key" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Dual_EC_DRBG: weak pseudo random number generator", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-6755", + }, + { + "type": "URL", + "value": "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + }, + { + "type": "URL", + "value": "http://rump2007.cr.yp.to/15-shumow.pdf", + }, + { + "type": "URL", + "value": "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + }, + { + "type": "URL", + "value": "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/63657", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-0928", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "libssl1.1", + "references": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928", + ], + }, + "category": "Vulnerability", + "description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a "fault-based attack."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "openssl: RSA authentication weakness", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-0928", + }, + { + "type": "URL", + "value": "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + }, + { + "type": "URL", + "value": "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + }, + { + "type": "URL", + "value": "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + }, + { + "type": "URL", + "value": "http://www.osvdb.org/62808", + }, + { + "type": "URL", + "value": "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-0928", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3821", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821", + ], + }, + "category": "Vulnerability", + "description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "buffer overrun in format_timespan() function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3821", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0336", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2139327", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0336", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/23928", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/23933", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3821.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3821", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4415", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4415", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0954", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2155515", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0954", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4415.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/12/21/3", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4392", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392", + ], + }, + "category": "Vulnerability", + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4392", + }, + { + "type": "URL", + "value": "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2013/10/01/9", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4392", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-13529", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529", + ], + }, + "category": "Vulnerability", + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-13529", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-13529.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4361.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210625-0005/", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-13529", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31437", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify a sealed log file such that, in some views, not all existing and sealed log messages are displayed. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can modify a seale ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31437", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31438", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can truncate a sealed log file and then resume log sealing such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can truncate a sea ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31438", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31439", + "installedVersion": "247.3-7", + "packageName": "libsystemd0", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify the contents of past events in a sealed log file and then adjust the file such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can modify the con ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31439", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "4.16.0-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-46848", + "installedVersion": "4.16.0-2", + "packageName": "libtasn1-6", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0343", + "https://access.redhat.com/security/cve/CVE-2021-46848", + "https://bugs.gentoo.org/866237", + "https://bugzilla.redhat.com/2140058", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + "https://errata.almalinux.org/9/ALSA-2023-0343.html", + "https://errata.rockylinux.org/RLSA-2023:0343", + "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + "https://gitlab.com/gnutls/libtasn1/-/issues/32", + "https://linux.oracle.com/cve/CVE-2021-46848.html", + "https://linux.oracle.com/errata/ELSA-2023-0343.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + "https://security.netapp.com/advisory/ntap-20221118-0006/", + "https://ubuntu.com/security/notices/USN-5707-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46848", + ], + }, + "category": "Vulnerability", + "description": "GNU Libtasn1 before 4.19.0 has an ETYPE_OK off-by-one array size check that affects asn1_encode_simple_der.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "libtasn1: Out-of-bound access in ETYPE_OK", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-46848", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0343", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/866237", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140058", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0343.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0343", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/-/issues/32", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-46848.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0343.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221118-0006/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5707-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-46848", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "6.2+20201114-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-29458", + "installedVersion": "6.2+20201114-2", + "packageName": "libtinfo6", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458", + ], + }, + "category": "Vulnerability", + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "ncurses: segfaulting OOB read", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29458", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/41", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#t20220416", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213488", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5477-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29458", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29491", + "installedVersion": "6.2+20201114-2", + "packageName": "libtinfo6", + "references": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4", + ], + }, + "category": "Vulnerability", + "description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Local users can trigger security-relevant memory corruption via malformed data", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29491", + }, + { + "type": "URL", + "value": "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/10", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/11", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230517-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/12/5", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/13/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3821", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821", + ], + }, + "category": "Vulnerability", + "description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "buffer overrun in format_timespan() function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3821", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0336", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2139327", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0336", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/23928", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/23933", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3821.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3821", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "247.3-7+deb11u2", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4415", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4415", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0954", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2155515", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0954", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4415.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/12/21/3", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4392", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392", + ], + }, + "category": "Vulnerability", + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4392", + }, + { + "type": "URL", + "value": "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2013/10/01/9", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4392", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-13529", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529", + ], + }, + "category": "Vulnerability", + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-13529", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-13529.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4361.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210625-0005/", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-13529", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31437", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify a sealed log file such that, in some views, not all existing and sealed log messages are displayed. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can modify a seale ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31437", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31438", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can truncate a sealed log file and then resume log sealing such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can truncate a sea ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31438", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31439", + "installedVersion": "247.3-7", + "packageName": "libudev1", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify the contents of past events in a sealed log file and then adjust the file such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can modify the con ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31439", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "2.36.1-8+deb11u1", + "packageName": "libuuid1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4899", + "installedVersion": "1.4.8+dfsg-2.1", + "packageName": "libzstd1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-4899", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4899", + "https://github.com/facebook/zstd/issues/3200", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4899", + "https://www.cve.org/CVERecord?id=CVE-2022-4899", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in zstd v1.4.10, where an attacker can supply empty string as an argument to the command line tool to cause buffer overrun.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "buffer overrun in util.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4899", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4899", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4899", + }, + { + "type": "URL", + "value": "https://github.com/facebook/zstd/issues/3200", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4899", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4899", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-5686", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825", + ], + }, + "category": "Vulnerability", + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-5686", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/27215", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/26048", + }, + { + "type": "URL", + "value": "http://www.vupen.com/english/advisories/2007/3474", + }, + { + "type": "URL", + "value": "https://issues.rpath.com/browse/RPL-1825", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4235", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235", + ], + }, + "category": "Vulnerability", + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/issues/317", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/545", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-26", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4235", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19882", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882", + ], + }, + "category": "Vulnerability", + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19882", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://bugs.archlinux.org/task/64836", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/702252", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/199", + }, + { + "type": "URL", + "value": "https://github.com/void-linux/void-packages/pull/17580", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202008-09", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19882", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29383", + "installedVersion": "1:4.8.1-1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + ], + }, + "category": "Vulnerability", + "description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that "cat /etc/passwd" shows a rogue user account.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Improper input validation in shadow-utils package utility chfn", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/687", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "2.36.1-8+deb11u1", + "packageName": "mount", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "6.2+20201114-2+deb11u1", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-29458", + "installedVersion": "6.2+20201114-2", + "packageName": "ncurses-base", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458", + ], + }, + "category": "Vulnerability", + "description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "ncurses: segfaulting OOB read", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29458", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/41", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#t20220416", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213488", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5477-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29458", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29491", + "installedVersion": "6.2+20201114-2", + "packageName": "ncurses-base", + "references": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4", + ], + }, + "category": "Vulnerability", + "description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Local users can trigger security-relevant memory corruption via malformed data", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29491", + }, + { + "type": "URL", + "value": "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/10", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/19/11", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230517-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6099-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29491", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/12/5", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/13/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4450", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (e.g. "CERTIFICATE"), any header data and the payload data. If the function succeeds then the "name_out", "header" and "data" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "double free after calling PEM_read_bio_ex", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4450", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4450.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0215", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The public API function BIO_new_NDEF is a helper function used for streaming +ASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the +SMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by +end user applications. + +The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter +BIO onto the front of it to form a BIO chain, and then returns the new head of +the BIO chain to the caller. Under certain conditions, for example if a CMS +recipient public key is invalid, the new filter BIO is freed and the function +returns a NULL result indicating a failure. However, in this case, the BIO chain +is not properly cleaned up and the BIO passed by the caller still retains +internal pointers to the previously freed filter BIO. If the caller then goes on +to call BIO_pop() on the BIO then a use-after-free will occur. This will most +likely result in a crash. + + + +This scenario occurs directly in the internal function B64_write_ASN1() which +may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on +the BIO. This internal function is in turn called by the public API functions +PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, +SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. + +Other public API functions that may be impacted by this include +i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and +i2d_PKCS7_bio_stream. + +The OpenSSL cms and smime command line applications are similarly affected. + + + +", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "use-after-free following BIO_new_NDEF", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0215", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0215.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0007/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0286", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "X.400 address type confusion in X.509 GeneralName", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0286.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0464", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://linux.oracle.com/cve/CVE-2023-0464.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt", + ], + }, + "category": "Vulnerability", + "description": "A security vulnerability has been identified in all supported versions + +of OpenSSL related to the verification of X.509 certificate chains +that include policy constraints. Attackers may be able to exploit this +vulnerability by creating a malicious certificate chain that triggers +exponential use of computational resources, leading to a denial-of-service +(DoS) attack on affected systems. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0464", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0464.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230322.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-2650", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://linux.oracle.com/cve/CVE-2023-2650.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://ubuntu.com/security/notices/USN-6188-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-2650.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6188-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2097", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt", + ], + }, + "category": "Vulnerability", + "description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "AES OCB fails to encrypt some bytes", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2097", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2097.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220715-0011/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230420-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5502-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5343", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220705.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u4", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4304", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "timing attack in RSA Decryption implementation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4304", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4304.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0465", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://linux.oracle.com/cve/CVE-2023-0465.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "Applications that use a non-default option when verifying certificates may be +vulnerable to an attack from a malicious CA to circumvent certain checks. + +Invalid certificate policies in leaf certificates are silently ignored by +OpenSSL and other certificate policy checks are skipped for that certificate. +A malicious CA could use this to deliberately assert invalid certificate policies +in order to circumvent policy checking on the certificate altogether. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Invalid certificate policies in leaf certificates are silently ignored", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0465", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0465.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb11u5", + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0466", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://linux.oracle.com/cve/CVE-2023-0466.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "The function X509_VERIFY_PARAM_add0_policy() is documented to +implicitly enable the certificate policy check when doing certificate +verification. However the implementation of the function does not +enable the check which allows certificates with invalid or incorrect +policies to pass the certificate verification. + +As suddenly enabling the policy check could break existing deployments it was +decided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy() +function. + +Instead the applications that require OpenSSL to perform certificate +policy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly +enable the policy check by calling X509_VERIFY_PARAM_set_flags() with +the X509_V_FLAG_POLICY_CHECK flag argument. + +Certificate policy checks are disabled by default in OpenSSL and are not +commonly used by applications.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Certificate policy check not enabled", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0466", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0466.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-6755", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + ], + }, + "category": "Vulnerability", + "description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain "skeleton key" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Dual_EC_DRBG: weak pseudo random number generator", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-6755", + }, + { + "type": "URL", + "value": "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + }, + { + "type": "URL", + "value": "http://rump2007.cr.yp.to/15-shumow.pdf", + }, + { + "type": "URL", + "value": "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + }, + { + "type": "URL", + "value": "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/63657", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-0928", + "installedVersion": "1.1.1n-0+deb11u3", + "packageName": "openssl", + "references": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928", + ], + }, + "category": "Vulnerability", + "description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a "fault-based attack."", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "openssl: RSA authentication weakness", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-0928", + }, + { + "type": "URL", + "value": "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + }, + { + "type": "URL", + "value": "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + }, + { + "type": "URL", + "value": "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + }, + { + "type": "URL", + "value": "http://www.osvdb.org/62808", + }, + { + "type": "URL", + "value": "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-0928", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-5686", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825", + ], + }, + "category": "Vulnerability", + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-5686", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/27215", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/26048", + }, + { + "type": "URL", + "value": "http://www.vupen.com/english/advisories/2007/3474", + }, + { + "type": "URL", + "value": "https://issues.rpath.com/browse/RPL-1825", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4235", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235", + ], + }, + "category": "Vulnerability", + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/issues/317", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/545", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-26", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4235", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19882", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882", + ], + }, + "category": "Vulnerability", + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19882", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://bugs.archlinux.org/task/64836", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/702252", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/199", + }, + { + "type": "URL", + "value": "https://github.com/void-linux/void-packages/pull/17580", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202008-09", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19882", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29383", + "installedVersion": "1:4.8.1-1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + ], + }, + "category": "Vulnerability", + "description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that "cat /etc/passwd" shows a rogue user account.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Improper input validation in shadow-utils package utility chfn", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/687", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-16156", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + "https://access.redhat.com/security/cve/CVE-2020-16156", + "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + "https://ubuntu.com/security/notices/USN-5689-1", + "https://ubuntu.com/security/notices/USN-5689-2", + "https://www.cve.org/CVERecord?id=CVE-2020-16156", + ], + }, + "category": "Vulnerability", + "description": "CPAN 2.28 allows Signature Verification Bypass.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "perl-CPAN: Bypass of verification of signatures in CHECKSUMS files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-16156", + }, + { + "type": "URL", + "value": "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + }, + { + "type": "URL", + "value": "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5689-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5689-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-16156", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31484", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + "https://github.com/andk/cpanpm/pull/175", + "https://metacpan.org/dist/CPAN/changes", + "https://ubuntu.com/security/notices/USN-6112-1", + "https://ubuntu.com/security/notices/USN-6112-2", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + ], + }, + "category": "Vulnerability", + "description": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "CPAN.pm before 2.35 does not verify TLS certificates when downloading ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31484", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/29/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/5", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/07/2", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + }, + { + "type": "URL", + "value": "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + }, + { + "type": "URL", + "value": "https://github.com/andk/cpanpm/pull/175", + }, + { + "type": "URL", + "value": "https://metacpan.org/dist/CPAN/changes", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6112-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6112-2", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/18/14", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-4116", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2011/11/04/2", + "http://www.openwall.com/lists/oss-security/2011/11/04/4", + "https://access.redhat.com/security/cve/CVE-2011-4116", + "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + "https://seclists.org/oss-sec/2011/q4/238", + "https://www.cve.org/CVERecord?id=CVE-2011-4116", + ], + }, + "category": "Vulnerability", + "description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "perl: File::Temp insecure temporary file handling", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-4116", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2011/11/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2011/11/04/4", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2011-4116", + }, + { + "type": "URL", + "value": "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + }, + { + "type": "URL", + "value": "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + }, + { + "type": "URL", + "value": "https://seclists.org/oss-sec/2011/q4/238", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2011-4116", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31486", + "installedVersion": "5.32.1-4+deb11u2", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://github.com/chansen/p5-http-tiny/pull/153", + "https://hackeriet.github.io/cpan-http-tiny-overview/", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + "https://www.openwall.com/lists/oss-security/2023/05/03/4", + "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/", + ], + }, + "category": "Vulnerability", + "description": "HTTP::Tiny before 0.083, a Perl core module since 5.13.9 and available standalone on CPAN, has an insecure default TLS configuration where users must opt in to verify certificates.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "HTTP::Tiny before 0.083, a Perl core module since 5.13.9 and available ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31486", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/29/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/5", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/07/2", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + }, + { + "type": "URL", + "value": "https://github.com/chansen/p5-http-tiny/pull/153", + }, + { + "type": "URL", + "value": "https://hackeriet.github.io/cpan-http-tiny-overview/", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/18/14", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/05/03/4", + }, + { + "type": "URL", + "value": "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2005-2541", + "installedVersion": "1.34+dfsg-1", + "packageName": "tar", + "references": [ + "http://marc.info/?l=bugtraq&m=112327628230258&w=2", + "https://access.redhat.com/security/cve/CVE-2005-2541", + "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + "https://www.cve.org/CVERecord?id=CVE-2005-2541", + ], + }, + "category": "Vulnerability", + "description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "tar: does not properly warn the user when extracting setuid or setgid files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2005-2541", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=112327628230258&w=2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2005-2541", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2005-2541", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-48303", + "installedVersion": "1.34+dfsg-1", + "packageName": "tar", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0959", + "https://access.redhat.com/security/cve/CVE-2022-48303", + "https://bugzilla.redhat.com/2149722", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + "https://errata.almalinux.org/9/ALSA-2023-0959.html", + "https://errata.rockylinux.org/RLSA-2023:0959", + "https://linux.oracle.com/cve/CVE-2022-48303.html", + "https://linux.oracle.com/errata/ELSA-2023-0959.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + "https://savannah.gnu.org/bugs/?62387", + "https://savannah.gnu.org/patch/?10307", + "https://ubuntu.com/security/notices/USN-5900-1", + "https://ubuntu.com/security/notices/USN-5900-2", + "https://www.cve.org/CVERecord?id=CVE-2022-48303", + ], + }, + "category": "Vulnerability", + "description": "GNU Tar through 1.34 has a one-byte out-of-bounds read that results in use of uninitialized memory for a conditional jump. Exploitation to change the flow of control has not been demonstrated. The issue occurs in from_header in list.c via a V7 archive in which mtime has approximately 11 whitespace characters.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "heap buffer overflow at from_header() in list.c via specially crafted checksum", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-48303", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0959", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149722", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0959.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0959", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-48303.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0959.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/bugs/?62387", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/patch/?10307", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5900-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5900-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-48303", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "2.36.1-8+deb11u1", + "packageName": "util-linux", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.1.5", + "foundIn": "Target: 'opt/bitnami/common/bin/gosu' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2023-27561", + "installedVersion": "v1.0.1", + "packageName": "github.com/opencontainers/runc", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-27561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27561", + "https://gist.github.com/LiveOverflow/c937820b688922eb127fb760ce06dab9", + "https://github.com/advisories/GHSA-vpvm-3wq2-2wvm", + "https://github.com/opencontainers/runc/issues/2197#issuecomment-1437617334", + "https://github.com/opencontainers/runc/issues/3751", + "https://github.com/opencontainers/runc/pull/3785", + "https://github.com/opencontainers/runc/releases/tag/v1.1.5", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DHGVGGMKGZSJ7YO67TGGPFEHBYMS63VF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FYVE3GB4OG3BNT5DLQHYO4M5SXX33AQ5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I6BF24VCZRFTYBTT3T7HDZUOTKOTNPLZ/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27561", + "https://ubuntu.com/security/notices/USN-6088-1", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27561", + ], + }, + "category": "Vulnerability", + "description": "runc through 1.1.4 has Incorrect Access Control leading to Escalation of Privileges, related to libcontainer/rootfs_linux.go. To exploit this, an attacker must be able to spawn two containers with custom volume-mount configurations, and be able to run custom images. NOTE: this issue exists because of a CVE-2019-19921 regression.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "volume mount race condition (regression of CVE-2019-19921)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-27561", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-27561", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27561", + }, + { + "type": "URL", + "value": "https://gist.github.com/LiveOverflow/c937820b688922eb127fb760ce06dab9", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vpvm-3wq2-2wvm", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/issues/2197#issuecomment-1437617334", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/issues/3751", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/pull/3785", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/releases/tag/v1.1.5", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DHGVGGMKGZSJ7YO67TGGPFEHBYMS63VF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FYVE3GB4OG3BNT5DLQHYO4M5SXX33AQ5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I6BF24VCZRFTYBTT3T7HDZUOTKOTNPLZ/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-27561", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-27561", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.0", + "foundIn": "Target: 'opt/bitnami/common/bin/gosu' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-43784", + "installedVersion": "v1.0.1", + "packageName": "github.com/opencontainers/runc", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-43784", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=2241", + "https://github.com/advisories/GHSA-v95c-p5hm-xq8f", + "https://github.com/opencontainers/runc/commit/9c444070ec7bb83995dbc0185da68284da71c554", + "https://github.com/opencontainers/runc/commit/d72d057ba794164c3cce9451a00b72a78b25e1ae", + "https://github.com/opencontainers/runc/commit/dde509df4e28cec33b3c99c6cda3d4fd5beafc77", + "https://github.com/opencontainers/runc/commit/f50369af4b571e358f20b139eea52d612eb55eed", + "https://github.com/opencontainers/runc/security/advisories/GHSA-v95c-p5hm-xq8f", + "https://lists.debian.org/debian-lts-announce/2021/12/msg00005.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43784", + "https://pkg.go.dev/vuln/GO-2022-0274", + "https://www.cve.org/CVERecord?id=CVE-2021-43784", + ], + }, + "category": "Vulnerability", + "description": "runc is a CLI tool for spawning and running containers on Linux according to the OCI specification. In runc, netlink is used internally as a serialization system for specifying the relevant container configuration to the \`C\` portion of the code (responsible for the based namespace setup of containers). In all versions of runc prior to 1.0.3, the encoder did not handle the possibility of an integer overflow in the 16-bit length field for the byte array attribute type, meaning that a large enough malicious byte array attribute could result in the length overflowing and the attribute contents being parsed as netlink messages for container configuration. This vulnerability requires the attacker to have some control over the configuration of the container and would allow the attacker to bypass the namespace restrictions of the container by simply adding their own netlink payload which disables all namespaces. The main users impacted are those who allow untrusted images with untrusted configurations to run on their machines (such as with shared cloud infrastructure). runc version 1.0.3 contains a fix for this bug. As a workaround, one may try disallowing untrusted namespace paths from your container. It should be noted that untrusted namespace paths would allow the attacker to disable namespace protections entirely even in the absence of this bug.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "integer overflow in netlink bytemsg length field allows attacker to override netlink-based container configuration", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-43784", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-43784", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/project-zero/issues/detail?id=2241", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-v95c-p5hm-xq8f", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/9c444070ec7bb83995dbc0185da68284da71c554", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/d72d057ba794164c3cce9451a00b72a78b25e1ae", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/dde509df4e28cec33b3c99c6cda3d4fd5beafc77", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/f50369af4b571e358f20b139eea52d612eb55eed", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/security/advisories/GHSA-v95c-p5hm-xq8f", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/12/msg00005.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-43784", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0274", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-43784", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.2", + "foundIn": "Target: 'opt/bitnami/common/bin/gosu' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29162", + "installedVersion": "v1.0.1", + "packageName": "github.com/opencontainers/runc", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8090", + "https://access.redhat.com/security/cve/CVE-2022-29162", + "https://bugzilla.redhat.com/2086398", + "https://bugzilla.redhat.com/show_bug.cgi?id=2086398", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29162", + "https://errata.almalinux.org/9/ALSA-2022-8090.html", + "https://errata.rockylinux.org/RLSA-2022:8090", + "https://github.com/advisories/GHSA-f3fp-gc8g-vw66", + "https://github.com/opencontainers/runc/commit/98fe566c527479195ce3c8167136d2a555fe6b65", + "https://github.com/opencontainers/runc/commit/d04de3a9b72d7a2455c1885fc75eb36d02cd17b5", + "https://github.com/opencontainers/runc/releases/tag/v1.1.2", + "https://github.com/opencontainers/runc/security/advisories/GHSA-f3fp-gc8g-vw66", + "https://linux.oracle.com/cve/CVE-2022-29162.html", + "https://linux.oracle.com/errata/ELSA-2022-8090.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AVPZBV7ISA7QKRPTC7ZXWKMIQI2HZEBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/D77CKD3AXPMU4PMQIQI5Q74SI4JATNND/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GPQU4YC4AAY54JDXGDQHJEYKSXXG5T2Y/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29162", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2022-29162", + "https://www.openwall.com/lists/oss-security/2022/05/12/1", + ], + }, + "category": "Vulnerability", + "description": "runc is a CLI tool for spawning and running containers on Linux according to the OCI specification. A bug was found in runc prior to version 1.1.2 where \`runc exec --cap\` created processes with non-empty inheritable Linux process capabilities, creating an atypical Linux environment and enabling programs with inheritable file capabilities to elevate those capabilities to the permitted set during execve(2). This bug did not affect the container security sandbox as the inheritable set never contained more capabilities than were included in the container's bounding set. This bug has been fixed in runc 1.1.2. This fix changes \`runc exec --cap\` behavior such that the additional capabilities granted to the process being executed (as specified via \`--cap\` arguments) do not include inheritable capabilities. In addition, \`runc spec\` is changed to not set any inheritable capabilities in the created example OCI spec (\`config.json\`) file.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "runc: incorrect handling of inheritable capabilities", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29162", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8090", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29162", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2086398", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2086398", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29162", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8090.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8090", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-f3fp-gc8g-vw66", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/98fe566c527479195ce3c8167136d2a555fe6b65", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/d04de3a9b72d7a2455c1885fc75eb36d02cd17b5", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/releases/tag/v1.1.2", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/security/advisories/GHSA-f3fp-gc8g-vw66", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29162.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8090.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AVPZBV7ISA7QKRPTC7ZXWKMIQI2HZEBB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/D77CKD3AXPMU4PMQIQI5Q74SI4JATNND/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GPQU4YC4AAY54JDXGDQHJEYKSXXG5T2Y/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29162", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29162", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/05/12/1", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.5", + "foundIn": "Target: 'opt/bitnami/common/bin/gosu' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2023-28642", + "installedVersion": "v1.0.1", + "packageName": "github.com/opencontainers/runc", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-28642", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28642", + "https://github.com/advisories/GHSA-g2j6-57v7-gm8c", + "https://github.com/opencontainers/runc/pull/3785", + "https://github.com/opencontainers/runc/security/advisories/GHSA-g2j6-57v7-gm8c", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28642", + "https://ubuntu.com/security/notices/USN-6088-1", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2023-28642", + ], + }, + "category": "Vulnerability", + "description": "runc is a CLI tool for spawning and running containers according to the OCI specification. It was found that AppArmor can be bypassed when \`/proc\` inside the container is symlinked with a specific mount configuration. This issue has been fixed in runc version 1.1.5, by prohibiting symlinked \`/proc\`. See PR #3785 for details. users are advised to upgrade. Users unable to upgrade should avoid using an untrusted container image.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "AppArmor can be bypassed when \`/proc\` inside the container is symlinked with a specific mount configuration", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-28642", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-28642", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28642", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-g2j6-57v7-gm8c", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/pull/3785", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/security/advisories/GHSA-g2j6-57v7-gm8c", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-28642", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-28642", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.5", + "foundIn": "Target: 'opt/bitnami/common/bin/gosu' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2023-25809", + "installedVersion": "v1.0.1", + "packageName": "github.com/opencontainers/runc", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-25809", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-25809", + "https://github.com/advisories/GHSA-m8cg-xc2p-r3fc", + "https://github.com/opencontainers/runc/commit/0d62b950e60f6980b54fe3bafd9a9c608dc1df17", + "https://github.com/opencontainers/runc/commit/0e6b818a2b0d24fdb6697614e5c5f115bbe8e3a5 (v1.1.5)", + "https://github.com/opencontainers/runc/security/advisories/GHSA-m8cg-xc2p-r3fc", + "https://nvd.nist.gov/vuln/detail/CVE-2023-25809", + "https://ubuntu.com/security/notices/USN-6088-1", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2023-25809", + ], + }, + "category": "Vulnerability", + "description": "runc is a CLI tool for spawning and running containers according to the OCI specification. In affected versions it was found that rootless runc makes \`/sys/fs/cgroup\` writable in following conditons: 1. when runc is executed inside the user namespace, and the \`config.json\` does not specify the cgroup namespace to be unshared (e.g.., \`(docker|podman|nerdctl) run --cgroupns=host\`, with Rootless Docker/Podman/nerdctl) or 2. when runc is executed outside the user namespace, and \`/sys\` is mounted with \`rbind, ro\` (e.g., \`runc spec --rootless\`; this condition is very rare). A container may gain the write access to user-owned cgroup hierarchy \`/sys/fs/cgroup/user.slice/...\` on the host . Other users's cgroup hierarchies are not affected. Users are advised to upgrade to version 1.1.5. Users unable to upgrade may unshare the cgroup namespace (\`(docker|podman|nerdctl) run --cgroupns=private)\`. This is the default behavior of Docker/Podman/nerdctl on cgroup v2 hosts. or add \`/sys/fs/cgroup\` to \`maskedPaths\`.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Rootless runc makes \`/sys/fs/cgroup\` writable", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-25809", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-25809", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-25809", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-m8cg-xc2p-r3fc", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/0d62b950e60f6980b54fe3bafd9a9c608dc1df17", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/commit/0e6b818a2b0d24fdb6697614e5c5f115bbe8e3a5 (v1.1.5)", + }, + { + "type": "URL", + "value": "https://github.com/opencontainers/runc/security/advisories/GHSA-m8cg-xc2p-r3fc", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-25809", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6088-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-25809", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220412211240-33da011f77ad", + "foundIn": "Target: 'opt/bitnami/common/bin/gosu' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29526", + "installedVersion": "v0.0.0-20210817142637-7d9622a276b7", + "packageName": "golang.org/x/sys", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526", + ], + }, + "category": "Vulnerability", + "description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "faccessat checks wrong group", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29526", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/52313", + }, + { + "type": "URL", + "value": "https://go.dev/cl/399539", + }, + { + "type": "URL", + "value": "https://go.dev/cl/400074", + }, + { + "type": "URL", + "value": "https://go.dev/issue/52313", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29526.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5337.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0493", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29526", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220412211240-33da011f77ad", + "foundIn": "Target: 'opt/bitnami/common/bin/wait-for-port' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29526", + "installedVersion": "v0.0.0-20210510120138-977fb7262007", + "packageName": "golang.org/x/sys", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526", + ], + }, + "category": "Vulnerability", + "description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "faccessat checks wrong group", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29526", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/52313", + }, + { + "type": "URL", + "value": "https://go.dev/cl/399539", + }, + { + "type": "URL", + "value": "https://go.dev/cl/400074", + }, + { + "type": "URL", + "value": "https://go.dev/issue/52313", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29526.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5337.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0493", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29526", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.2.26", + "foundIn": "Target: 'opt/bitnami/minio-client/bin/mc' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "GHSA-rm8v-mxj3-5rmq", + "installedVersion": "v1.2.19", + "packageName": "github.com/lestrrat-go/jwx", + "references": [ + "https://github.com/advisories/GHSA-rm8v-mxj3-5rmq", + "https://github.com/lestrrat-go/jwx/blob/796b2a9101cf7e7cb66455e4d97f3c158ee10904/jwe/internal/aescbc/aescbc.go#L33-L66", + "https://github.com/lestrrat-go/jwx/blob/8840ffd4afc5839f591ff0e9ba9034af52b1643e/jwe/internal/aescbc/aescbc.go#L210-L213", + "https://github.com/lestrrat-go/jwx/commit/6c41e3822485fc7e11dd70b4b0524b075d66b103", + "https://github.com/lestrrat-go/jwx/commit/d9ddbc8e5009cfdd8c28413390b67afa7f576dd6", + "https://github.com/lestrrat-go/jwx/security/advisories/GHSA-rm8v-mxj3-5rmq", + ], + }, + "category": "Vulnerability", + "description": "AES-CBC decryption is vulnerable to a timing attack which may permit an attacker to recover the plaintext of JWE data.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "github.com/lestrrat-go/jwx vulnerable to Potential Padding Oracle Attack", + "references": [ + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-rm8v-mxj3-5rmq", + }, + { + "type": "URL", + "value": "https://github.com/lestrrat-go/jwx/blob/796b2a9101cf7e7cb66455e4d97f3c158ee10904/jwe/internal/aescbc/aescbc.go#L33-L66", + }, + { + "type": "URL", + "value": "https://github.com/lestrrat-go/jwx/blob/8840ffd4afc5839f591ff0e9ba9034af52b1643e/jwe/internal/aescbc/aescbc.go#L210-L213", + }, + { + "type": "URL", + "value": "https://github.com/lestrrat-go/jwx/commit/6c41e3822485fc7e11dd70b4b0524b075d66b103", + }, + { + "type": "URL", + "value": "https://github.com/lestrrat-go/jwx/commit/d9ddbc8e5009cfdd8c28413390b67afa7f576dd6", + }, + { + "type": "URL", + "value": "https://github.com/lestrrat-go/jwx/security/advisories/GHSA-rm8v-mxj3-5rmq", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'opt/bitnami/minio-client/bin/mc' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.1.1-0.20221104162952-702349b0e862", + "foundIn": "Target: 'opt/bitnami/minio-client/bin/mc' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41721", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41721", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41721", + "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + "https://go.dev/cl/447396", + "https://go.dev/issue/56352", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + "https://pkg.go.dev/vuln/GO-2023-1495", + "https://www.cve.org/CVERecord?id=CVE-2022-41721", + ], + }, + "category": "Vulnerability", + "description": "A request smuggling attack is possible when using MaxBytesHandler. When using MaxBytesHandler, the body of an HTTP request is not fully consumed. When the server attempts to read HTTP2 frames from the connection, it will instead be reading the body of the HTTP request, which could be attacker-manipulated to represent arbitrary HTTP2 requests.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "request smuggling", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41721", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + }, + { + "type": "URL", + "value": "https://go.dev/cl/447396", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56352", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1495", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41721", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'opt/bitnami/minio-client/bin/mc' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'opt/bitnami/minio-client/bin/mc' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'opt/bitnami/minio-client/bin/mc' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.7", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-2835", + "installedVersion": "v1.9.3", + "packageName": "github.com/coredns/coredns", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-2835", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118542", + "https://github.com/advisories/GHSA-ch7v-37xg-75ph", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2835", + "https://www.cve.org/CVERecord?id=CVE-2022-2835", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in coreDNS. This flaw allows a malicious user to reroute internal calls to some internal services that were accessed by the FQDN in a format of ..svc.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "coreDNS: DNS Redirection of Internal Services", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2835", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2835", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2118542", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-ch7v-37xg-75ph", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2835", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2835", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-2837", + "installedVersion": "v1.9.3", + "packageName": "github.com/coredns/coredns", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-2837", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118543", + "https://github.com/advisories/GHSA-h828-v5pv-33qx", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2837", + "https://www.cve.org/CVERecord?id=CVE-2022-2837", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in coreDNS. This flaw allows a malicious user to redirect traffic intended for external top-level domains (TLD) to a pod they control by creating projects and namespaces that match the TLD.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "DNS Redirection of Top-Level Domains", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2837", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2837", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2118543", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-h828-v5pv-33qx", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2837", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2837", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.2.26", + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "GHSA-rm8v-mxj3-5rmq", + "installedVersion": "v1.2.19", + "packageName": "github.com/lestrrat-go/jwx", + "references": [ + "https://github.com/advisories/GHSA-rm8v-mxj3-5rmq", + "https://github.com/lestrrat-go/jwx/blob/796b2a9101cf7e7cb66455e4d97f3c158ee10904/jwe/internal/aescbc/aescbc.go#L33-L66", + "https://github.com/lestrrat-go/jwx/blob/8840ffd4afc5839f591ff0e9ba9034af52b1643e/jwe/internal/aescbc/aescbc.go#L210-L213", + "https://github.com/lestrrat-go/jwx/commit/6c41e3822485fc7e11dd70b4b0524b075d66b103", + "https://github.com/lestrrat-go/jwx/commit/d9ddbc8e5009cfdd8c28413390b67afa7f576dd6", + "https://github.com/lestrrat-go/jwx/security/advisories/GHSA-rm8v-mxj3-5rmq", + ], + }, + "category": "Vulnerability", + "description": "AES-CBC decryption is vulnerable to a timing attack which may permit an attacker to recover the plaintext of JWE data.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "github.com/lestrrat-go/jwx vulnerable to Potential Padding Oracle Attack", + "references": [ + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-rm8v-mxj3-5rmq", + }, + { + "type": "URL", + "value": "https://github.com/lestrrat-go/jwx/blob/796b2a9101cf7e7cb66455e4d97f3c158ee10904/jwe/internal/aescbc/aescbc.go#L33-L66", + }, + { + "type": "URL", + "value": "https://github.com/lestrrat-go/jwx/blob/8840ffd4afc5839f591ff0e9ba9034af52b1643e/jwe/internal/aescbc/aescbc.go#L210-L213", + }, + { + "type": "URL", + "value": "https://github.com/lestrrat-go/jwx/commit/6c41e3822485fc7e11dd70b4b0524b075d66b103", + }, + { + "type": "URL", + "value": "https://github.com/lestrrat-go/jwx/commit/d9ddbc8e5009cfdd8c28413390b67afa7f576dd6", + }, + { + "type": "URL", + "value": "https://github.com/lestrrat-go/jwx/security/advisories/GHSA-rm8v-mxj3-5rmq", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.28.0", + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2023-33955", + "installedVersion": "v0.20.0", + "packageName": "github.com/minio/console", + "references": [ + "https://github.com/advisories/GHSA-jv3f-7m33-qp65", + "https://github.com/minio/console/commit/17e791afb90c9ad27c65f63c6be14f2f6a3a9d60", + "https://github.com/minio/console/releases/tag/v0.28.0", + "https://github.com/minio/console/security/advisories/GHSA-jv3f-7m33-qp65", + "https://nvd.nist.gov/vuln/detail/CVE-2023-33955", + ], + }, + "category": "Vulnerability", + "description": "Minio Console is the UI for MinIO Object Storage. Unicode RIGHT-TO-LEFT OVERRIDE characters can be used to mask the original filename. This issue has been patched in version 0.28.0. + +", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "Minio console object names with RIGHT-TO-LEFT OVERRIDE unicode character can be exploited", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-33955", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-jv3f-7m33-qp65", + }, + { + "type": "URL", + "value": "https://github.com/minio/console/commit/17e791afb90c9ad27c65f63c6be14f2f6a3a9d60", + }, + { + "type": "URL", + "value": "https://github.com/minio/console/releases/tag/v0.28.0", + }, + { + "type": "URL", + "value": "https://github.com/minio/console/security/advisories/GHSA-jv3f-7m33-qp65", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-33955", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.1.1-0.20221104162952-702349b0e862", + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41721", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41721", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41721", + "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + "https://go.dev/cl/447396", + "https://go.dev/issue/56352", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + "https://pkg.go.dev/vuln/GO-2023-1495", + "https://www.cve.org/CVERecord?id=CVE-2022-41721", + ], + }, + "category": "Vulnerability", + "description": "A request smuggling attack is possible when using MaxBytesHandler. When using MaxBytesHandler, the body of an HTTP request is not fully consumed. When the server attempts to read HTTP2 frames from the connection, it will instead be reading the body of the HTTP request, which could be attacker-manipulated to represent arbitrary HTTP2 requests.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "request smuggling", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41721", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + }, + { + "type": "URL", + "value": "https://go.dev/cl/447396", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56352", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1495", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41721", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20220722155237-a158d28d115b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'opt/bitnami/minio/bin/minio' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.7", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'minio' of Deployment 'securecodebox-operator-minio' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV015", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015", + ], + }, + "category": "Misconfiguration", + "description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set 'containers[].resources.requests.cpu'.", + "name": "CPU requests not specified(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'resources.requests.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv015", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Deployment/securecodebox-operator-minio' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Deployment' / Name: 'securecodebox-operator-minio'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb10u7", + "foundIn": "Target: 'k8s.gcr.io/kube-scheduler:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3134-1", + "installedVersion": "2021a-0+deb10u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb10u8", + "foundIn": "Target: 'k8s.gcr.io/kube-scheduler:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3161-1", + "installedVersion": "2021a-0+deb10u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb10u10", + "foundIn": "Target: 'k8s.gcr.io/kube-scheduler:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3366-1", + "installedVersion": "2021a-0+deb10u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb10u11", + "foundIn": "Target: 'k8s.gcr.io/kube-scheduler:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3412-1", + "installedVersion": "2021a-0+deb10u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0040", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0040", + ], + }, + "category": "Misconfiguration", + "description": "Disable profiling, if not needed.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Edit the Scheduler pod specification file /etc/kubernetes/manifests/kube-scheduler.yaml file on the Control Plane node and set the below parameter.", + "name": "Ensure that the --profiling argument is set to false(Ensure that the --profiling argument is set to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0040", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV009", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009", + ], + }, + "category": "Misconfiguration", + "description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Do not set 'spec.template.spec.hostNetwork' to true.", + "name": "Access to host network(Pod 'kube-scheduler-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv009", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV023", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023", + ], + }, + "category": "Misconfiguration", + "description": "HostPath volumes must be forbidden.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Do not set 'spec.volumes[*].hostPath'.", + "name": "hostPath volumes mounted(Pod 'kube-scheduler-kind-control-plane' should not set 'spec.template.volumes.hostPath')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv023", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-scheduler-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-scheduler-kind-control-plane'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb10u7", + "foundIn": "Target: 'k8s.gcr.io/kube-controller-manager:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3134-1", + "installedVersion": "2021a-0+deb10u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb10u8", + "foundIn": "Target: 'k8s.gcr.io/kube-controller-manager:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3161-1", + "installedVersion": "2021a-0+deb10u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb10u10", + "foundIn": "Target: 'k8s.gcr.io/kube-controller-manager:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3366-1", + "installedVersion": "2021a-0+deb10u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb10u11", + "foundIn": "Target: 'k8s.gcr.io/kube-controller-manager:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3412-1", + "installedVersion": "2021a-0+deb10u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0033", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0033", + ], + }, + "category": "Misconfiguration", + "description": "Activate garbage collector on pod termination, as appropriate.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Edit the Controller Manager pod specification file /etc/kubernetes/manifests/kube-controller-manager.yaml on the Control Plane node and set the --terminated-pod-gc-threshold to an appropriate threshold.", + "name": "Ensure that the --terminated-pod-gc-threshold argument is set as appropriate(Ensure that the --terminated-pod-gc-threshold argument is set as appropriate)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0033", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0034", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0034", + ], + }, + "category": "Misconfiguration", + "description": "Disable profiling, if not needed.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Edit the Controller Manager pod specification file /etc/kubernetes/manifests/kube-controller-manager.yaml on the Control Plane node and set the below parameter.", + "name": "Ensure that the --profiling argument is set to false(Ensure that the --profiling argument is set to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0034", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0038", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0038", + ], + }, + "category": "Misconfiguration", + "description": "Enable kubelet server certificate rotation on controller-manager.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Edit the Controller Manager pod specification file /etc/kubernetes/manifests/kube-controller-manager.yaml on the Control Plane node and set the --feature-gates parameter to include RotateKubeletServerCertificate=true .", + "name": "Ensure that the RotateKubeletServerCertificate argument is set to true(Ensure that the RotateKubeletServerCertificate argument is set to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0038", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV009", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009", + ], + }, + "category": "Misconfiguration", + "description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Do not set 'spec.template.spec.hostNetwork' to true.", + "name": "Access to host network(Pod 'kube-controller-manager-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv009", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV023", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023", + ], + }, + "category": "Misconfiguration", + "description": "HostPath volumes must be forbidden.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Do not set 'spec.volumes[*].hostPath'.", + "name": "hostPath volumes mounted(Pod 'kube-controller-manager-kind-control-plane' should not set 'spec.template.volumes.hostPath')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv023", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/kube-controller-manager-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'kube-controller-manager-kind-control-plane'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3374", + "installedVersion": "1.8.2.2", + "packageName": "apt", + "references": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374", + ], + }, + "category": "Vulnerability", + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + }, + { + "type": "URL", + "value": "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + }, + { + "type": "URL", + "value": "https://seclists.org/fulldisclosure/2011/Sep/221", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2011-3374", + }, + { + "type": "URL", + "value": "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2011-3374", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-37600", + "installedVersion": "1:2.33.1-0.1", + "packageName": "bsdutils", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-37600", + "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + "https://github.com/karelzak/util-linux/issues/1395", + "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + "https://security.netapp.com/advisory/ntap-20210902-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-37600", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "util-linux: integer overflow can lead to buffer overflow in get_sem_elements() in sys-utils/ipcutils.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-37600", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-37600", + }, + { + "type": "URL", + "value": "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + }, + { + "type": "URL", + "value": "https://github.com/karelzak/util-linux/issues/1395", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210902-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-37600", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "1:2.33.1-0.1", + "packageName": "bsdutils", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2016-2781", + "installedVersion": "8.30-3", + "packageName": "coreutils", + "references": [ + "http://seclists.org/oss-sec/2016/q1/452", + "http://www.openwall.com/lists/oss-security/2016/02/28/2", + "http://www.openwall.com/lists/oss-security/2016/02/28/3", + "https://access.redhat.com/security/cve/CVE-2016-2781", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lore.kernel.org/patchwork/patch/793178/", + "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + "https://www.cve.org/CVERecord?id=CVE-2016-2781", + ], + }, + "category": "Vulnerability", + "description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "coreutils: Non-privileged session can escape to the parent session in chroot", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2016-2781", + }, + { + "type": "URL", + "value": "http://seclists.org/oss-sec/2016/q1/452", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2016/02/28/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2016/02/28/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/patchwork/patch/793178/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2016-2781", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-18018", + "installedVersion": "8.30-3", + "packageName": "coreutils", + "references": [ + "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + "https://access.redhat.com/security/cve/CVE-2017-18018", + "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + "https://www.cve.org/CVERecord?id=CVE-2017-18018", + ], + }, + "category": "Vulnerability", + "description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX "-R -L" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "coreutils: race condition vulnerability in chown and chgrp", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-18018", + }, + { + "type": "URL", + "value": "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-18018", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-18018", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.19.8", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1664", + "installedVersion": "1.19.7", + "packageName": "dpkg", + "references": [ + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1664", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f23dddc17f69c9598477098c7fb9936e15fa495", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=58814cacee39c4ce9e2cd0e3a3b9b57ad437eff5", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=7a6c03cb34d4a09f35df2f10779cbf1b70a5200b", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=faa4c92debe45412bfcf8a44f26e827800bb24be", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00033.html", + "https://lists.debian.org/debian-security-announce/2022/msg00115.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1664", + "https://security.netapp.com/advisory/ntap-20221007-0002/", + "https://ubuntu.com/security/notices/USN-5446-1", + "https://ubuntu.com/security/notices/USN-5446-2", + ], + }, + "category": "Vulnerability", + "description": "Dpkg::Source::Archive in dpkg, the Debian package management system, before version 1.21.8, 1.20.10, 1.19.8, 1.18.26 is prone to a directory traversal vulnerability. When extracting untrusted source packages in v2 and v3 source package formats that include a debian.tar, the in-place extraction can lead to directory traversal situations on specially crafted orig.tar and debian.tar tarballs.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Dpkg::Source::Archive in dpkg, the Debian package management system, b ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1664", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f23dddc17f69c9598477098c7fb9936e15fa495", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=58814cacee39c4ce9e2cd0e3a3b9b57ad437eff5", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=7a6c03cb34d4a09f35df2f10779cbf1b70a5200b", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=faa4c92debe45412bfcf8a44f26e827800bb24be", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/05/msg00033.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-security-announce/2022/msg00115.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1664", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221007-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5446-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5446-2", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-12886", + "installedVersion": "8.3.0-6", + "packageName": "gcc-8-base", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-12886", + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379&view=markup", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "https://www.cve.org/CVERecord?id=CVE-2018-12886", + "https://www.gnu.org/software/gcc/gcc-8/changes.html", + ], + }, + "category": "Vulnerability", + "description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-12886", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379&view=markup", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://www.gnu.org/software/gcc/gcc-8/changes.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-15847", + "installedVersion": "8.3.0-6", + "packageName": "gcc-8-base", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + "https://access.redhat.com/security/cve/CVE-2019-15847", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + "https://linux.oracle.com/cve/CVE-2019-15847.html", + "https://linux.oracle.com/errata/ELSA-2020-1864.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + "https://www.cve.org/CVERecord?id=CVE-2019-15847", + ], + }, + "category": "Vulnerability", + "description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "gcc: POWER9 "DARN" RNG intrinsic produces repeated output", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-15847", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-15847", + }, + { + "type": "URL", + "value": "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-15847.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1864.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-15847", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.2.12-1+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-34903", + "installedVersion": "2.2.12-1+deb10u1", + "packageName": "gpgv", + "references": [ + "http://www.openwall.com/lists/oss-security/2022/07/02/1", + "https://access.redhat.com/errata/RHSA-2022:6602", + "https://access.redhat.com/security/cve/CVE-2022-34903", + "https://bugs.debian.org/1014157", + "https://bugzilla.redhat.com/2102868", + "https://bugzilla.redhat.com/show_bug.cgi?id=2102868", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34903", + "https://dev.gnupg.org/T6027", + "https://errata.almalinux.org/9/ALSA-2022-6602.html", + "https://errata.rockylinux.org/RLSA-2022:6602", + "https://linux.oracle.com/cve/CVE-2022-34903.html", + "https://linux.oracle.com/errata/ELSA-2022-6602.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-34903", + "https://security.netapp.com/advisory/ntap-20220826-0005/", + "https://ubuntu.com/security/notices/USN-5503-1", + "https://ubuntu.com/security/notices/USN-5503-2", + "https://www.cve.org/CVERecord?id=CVE-2022-34903", + "https://www.debian.org/security/2022/dsa-5174", + "https://www.openwall.com/lists/oss-security/2022/06/30/1", + ], + }, + "category": "Vulnerability", + "description": "GnuPG through 2.3.6, in unusual situations where an attacker possesses any secret-key information from a victim's keyring and other constraints (e.g., use of GPGME) are met, allows signature forgery via injection into the status line.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Signature spoofing via status line injection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-34903", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/07/02/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6602", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/1014157", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2102868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2102868", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T6027", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6602.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:6602", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-34903.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-6602.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220826-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5503-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5503-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5174", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/06/30/1", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-14855", + "installedVersion": "2.2.12-1+deb10u1", + "packageName": "gpgv", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-14855", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-14855", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-14855", + "https://dev.gnupg.org/T4755", + "https://eprint.iacr.org/2020/014.pdf", + "https://lists.gnupg.org/pipermail/gnupg-announce/2019q4/000442.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-14855", + "https://rwc.iacr.org/2020/slides/Leurent.pdf", + "https://ubuntu.com/security/notices/USN-4516-1", + "https://usn.ubuntu.com/4516-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-14855", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the way certificate signatures could be forged using collisions found in the SHA-1 algorithm. An attacker could use this weakness to create forged certificate signatures. This issue affects GnuPG versions before 2.2.18.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "gnupg2: OpenPGP Key Certification Forgeries with SHA-1", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-14855", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-14855", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-14855", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-14855", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T4755", + }, + { + "type": "URL", + "value": "https://eprint.iacr.org/2020/014.pdf", + }, + { + "type": "URL", + "value": "https://lists.gnupg.org/pipermail/gnupg-announce/2019q4/000442.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-14855", + }, + { + "type": "URL", + "value": "https://rwc.iacr.org/2020/slides/Leurent.pdf", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4516-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4516-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-14855", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3219", + "installedVersion": "2.2.12-1+deb10u1", + "packageName": "gpgv", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-3219", + "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + "https://dev.gnupg.org/D556", + "https://dev.gnupg.org/T5993", + "https://marc.info/?l=oss-security&m=165696590211434&w=4", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + "https://security.netapp.com/advisory/ntap-20230324-0001/", + "https://www.cve.org/CVERecord?id=CVE-2022-3219", + ], + }, + "category": "Vulnerability", + "description": "GnuPG can be made to spin on a relatively small input by (for example) crafting a public key with thousands of signatures attached, compressed down to just a few KB.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "denial of service issue (resource consumption) using compressed packets", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3219", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3219", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/D556", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5993", + }, + { + "type": "URL", + "value": "https://marc.info/?l=oss-security&m=165696590211434&w=4", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230324-0001/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3219", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.9-3+deb10u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1271", + "installedVersion": "1.9-3", + "packageName": "gzip", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8", + ], + }, + "category": "Vulnerability", + "description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "arbitrary-file-write vulnerability", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1271", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:4940", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2073310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-4940.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:4940", + }, + { + "type": "URL", + "value": "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1271.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5052.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-01", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220930-0006/", + }, + { + "type": "URL", + "value": "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-4", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/04/07/8", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "iptables", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-11360", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "iptables", + "references": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360", + ], + }, + "category": "Vulnerability", + "description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "iptables: buffer overflow in iptables-restore", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-11360", + }, + { + "type": "URL", + "value": "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-11360", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3374", + "installedVersion": "1.8.2.2", + "packageName": "libapt-pkg5.0", + "references": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374", + ], + }, + "category": "Vulnerability", + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + }, + { + "type": "URL", + "value": "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + }, + { + "type": "URL", + "value": "https://seclists.org/fulldisclosure/2011/Sep/221", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2011-3374", + }, + { + "type": "URL", + "value": "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2011-3374", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.0.6-9.2~deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3112-1", + "installedVersion": "1.0.6-9.2~deb10u1", + "packageName": "libbz2-1.0", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "bzip2 - bugfix update", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-33574", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-33574", + "https://linux.oracle.com/cve/CVE-2021-33574.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210629-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1", + "https://www.cve.org/CVERecord?id=CVE-2021-33574", + ], + }, + "category": "Vulnerability", + "description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: mq_notify does not handle separately allocated thread attributes", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33574", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33574", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-33574.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9560.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210629-0005/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33574", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-35942", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-35942.json", + "https://access.redhat.com/security/cve/CVE-2021-35942", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-35942", + "https://linux.oracle.com/cve/CVE-2021-35942.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + "https://security.gentoo.org/glsa/202208-24", + "https://security.netapp.com/advisory/ntap-20210827-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + "https://sourceware.org/glibc/wiki/Security%20Exceptions", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-35942", + ], + }, + "category": "Vulnerability", + "description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Arbitrary read in wordexp()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-35942", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-35942.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-35942", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-35942", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-35942.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9560.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-24", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210827-0005/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + }, + { + "type": "URL", + "value": "https://sourceware.org/glibc/wiki/Security%20Exceptions", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5699-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-35942", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-23218", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-23218", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23218", + "https://linux.oracle.com/cve/CVE-2022-23218.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23218", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Stack-based buffer overflow in svcunix_create via long pathnames", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-23218", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-23218.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9421.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-24", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-23219", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-23219", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23219", + "https://linux.oracle.com/cve/CVE-2022-23219.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23219", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Stack-based buffer overflow in sunrpc clnt_create via a long pathname", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-23219", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-23219.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9421.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-24", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-1751", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-1751", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1751", + "https://linux.oracle.com/cve/CVE-2020-1751.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200430-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1751", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: array overflow in backtrace functions for powerpc", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-1751", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-1751.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4444.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202006-04", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200430-0002/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-1751", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-1752", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-1752", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1752", + "https://linux.oracle.com/cve/CVE-2020-1752.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + "https://security.gentoo.org/glsa/202101-20", + "https://security.netapp.com/advisory/ntap-20200511-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1752", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: use-after-free in glob() function when expanding ~user", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-1752", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-1752.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4444.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202101-20", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200511-0005/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-1752", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-6096", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-6096", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6096", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/attachment.cgi?id=12334", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + "https://ubuntu.com/security/notices/USN-4954-1", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2020-6096", + "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + ], + }, + "category": "Vulnerability", + "description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: signed comparison vulnerability in the ARMv7 memcpy function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-6096", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202101-20", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/attachment.cgi?id=12334", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4954-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3326", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/01/28/2", + "https://access.redhat.com/security/cve/CVE-2021-3326", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=2146", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3326", + "https://linux.oracle.com/cve/CVE-2021-3326.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210304-0007/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + "https://sourceware.org/pipermail/libc-alpha/2021-January/122058.html", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3326", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Assertion failure in ISO-2022-JP-3 gconv module related to combining characters", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3326", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/01/28/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/project-zero/issues/detail?id=2146", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3326.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210304-0007/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + }, + { + "type": "URL", + "value": "https://sourceware.org/pipermail/libc-alpha/2021-January/122058.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5699-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3999", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3999", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3999.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9234.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221104-0001/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/01/24/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2016-10228", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://openwall.com/lists/oss-security/2017/03/01/10", + "http://www.securityfocus.com/bid/96525", + "https://access.redhat.com/security/cve/CVE-2016-10228", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10228", + "https://linux.oracle.com/cve/CVE-2016-10228.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2016-10228", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: iconv program can hang when invoked with the -c option", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2016-10228", + }, + { + "type": "URL", + "value": "http://openwall.com/lists/oss-security/2017/03/01/10", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/96525", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2016-10228.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202101-20", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5768-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-25013", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-25013", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-25013", + "https://linux.oracle.com/cve/CVE-2019-25013.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210205-0004/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2019-25013", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: buffer over-read in iconv when processing invalid multi-byte input sequences in the EUC-KR encoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-25013", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-25013.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210205-0004/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5768-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-10029", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + "https://access.redhat.com/security/cve/CVE-2020-10029", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10029", + "https://linux.oracle.com/cve/CVE-2020-10029.html", + "https://linux.oracle.com/errata/ELSA-2021-0348.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200327-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-10029", + ], + }, + "category": "Vulnerability", + "description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-10029", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-10029", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10029", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-10029.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-0348.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202006-04", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200327-0003/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-10029", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-27618", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-27618", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27618", + "https://linux.oracle.com/cve/CVE-2020-27618.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210401-0006/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2020-27618", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: iconv when processing invalid multi-byte input sequences fails to advance the input state, which could result in an infinite loop", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-27618", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-27618.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210401-0006/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5768-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-4756", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756", + ], + }, + "category": "Vulnerability", + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-4756", + }, + { + "type": "URL", + "value": "http://cxib.net/stuff/glob-0day.c", + }, + { + "type": "URL", + "value": "http://securityreason.com/achievement_securityalert/89", + }, + { + "type": "URL", + "value": "http://securityreason.com/exploitalert/9223", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-4756", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-20796", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796", + ], + }, + "category": "Vulnerability", + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-20796", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/107160", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190315-0002/", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-20796", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010022", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: stack guard protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010022", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010023", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010023", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109167", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010024", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: ASLR bypass using cache of thread stack and heap", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010024", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109162", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010025", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is "ASLR bypass itself is not a vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: information disclosure of heap addresses of pthread_created thread", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010025", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19126", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19126", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19126", + "https://linux.oracle.com/cve/CVE-2019-19126.html", + "https://linux.oracle.com/errata/ELSA-2020-3861.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + "https://sourceware.org/ml/libc-alpha/2019-11/msg00649.html", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-19126", + ], + }, + "category": "Vulnerability", + "description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19126", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19126", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19126", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-19126.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-3861.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + }, + { + "type": "URL", + "value": "https://sourceware.org/ml/libc-alpha/2019-11/msg00649.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19126", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-9192", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-9192", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-9192", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-27645", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-27645", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27645", + "https://linux.oracle.com/cve/CVE-2021-27645.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + "https://security.gentoo.org/glsa/202107-07", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27462", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2021-27645", + ], + }, + "category": "Vulnerability", + "description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Use-after-free in addgetnetgrentX function in netgroupcache.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-27645", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-27645", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27645", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-27645.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9560.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27462", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-27645", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-33574", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-33574", + "https://linux.oracle.com/cve/CVE-2021-33574.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210629-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1", + "https://www.cve.org/CVERecord?id=CVE-2021-33574", + ], + }, + "category": "Vulnerability", + "description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: mq_notify does not handle separately allocated thread attributes", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33574", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33574", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-33574.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9560.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210629-0005/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33574", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-35942", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-35942.json", + "https://access.redhat.com/security/cve/CVE-2021-35942", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-35942", + "https://linux.oracle.com/cve/CVE-2021-35942.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + "https://security.gentoo.org/glsa/202208-24", + "https://security.netapp.com/advisory/ntap-20210827-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + "https://sourceware.org/glibc/wiki/Security%20Exceptions", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-35942", + ], + }, + "category": "Vulnerability", + "description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Arbitrary read in wordexp()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-35942", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-35942.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-35942", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-35942", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-35942.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9560.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-24", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210827-0005/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + }, + { + "type": "URL", + "value": "https://sourceware.org/glibc/wiki/Security%20Exceptions", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5699-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-35942", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-23218", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-23218", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23218", + "https://linux.oracle.com/cve/CVE-2022-23218.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23218", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Stack-based buffer overflow in svcunix_create via long pathnames", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-23218", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-23218.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9421.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-24", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-23219", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-23219", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23219", + "https://linux.oracle.com/cve/CVE-2022-23219.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23219", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Stack-based buffer overflow in sunrpc clnt_create via a long pathname", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-23219", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-23219.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9421.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-24", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-1751", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-1751", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1751", + "https://linux.oracle.com/cve/CVE-2020-1751.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200430-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1751", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: array overflow in backtrace functions for powerpc", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-1751", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-1751.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4444.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202006-04", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200430-0002/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-1751", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-1752", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-1752", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1752", + "https://linux.oracle.com/cve/CVE-2020-1752.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + "https://security.gentoo.org/glsa/202101-20", + "https://security.netapp.com/advisory/ntap-20200511-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1752", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: use-after-free in glob() function when expanding ~user", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-1752", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-1752.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4444.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202101-20", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200511-0005/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-1752", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-6096", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-6096", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6096", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/attachment.cgi?id=12334", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + "https://ubuntu.com/security/notices/USN-4954-1", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2020-6096", + "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + ], + }, + "category": "Vulnerability", + "description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: signed comparison vulnerability in the ARMv7 memcpy function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-6096", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202101-20", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/attachment.cgi?id=12334", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4954-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3326", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/01/28/2", + "https://access.redhat.com/security/cve/CVE-2021-3326", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=2146", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3326", + "https://linux.oracle.com/cve/CVE-2021-3326.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210304-0007/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + "https://sourceware.org/pipermail/libc-alpha/2021-January/122058.html", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3326", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Assertion failure in ISO-2022-JP-3 gconv module related to combining characters", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3326", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/01/28/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/project-zero/issues/detail?id=2146", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3326.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210304-0007/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + }, + { + "type": "URL", + "value": "https://sourceware.org/pipermail/libc-alpha/2021-January/122058.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5699-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3999", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3999", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3999.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9234.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221104-0001/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/01/24/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2016-10228", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://openwall.com/lists/oss-security/2017/03/01/10", + "http://www.securityfocus.com/bid/96525", + "https://access.redhat.com/security/cve/CVE-2016-10228", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10228", + "https://linux.oracle.com/cve/CVE-2016-10228.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2016-10228", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: iconv program can hang when invoked with the -c option", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2016-10228", + }, + { + "type": "URL", + "value": "http://openwall.com/lists/oss-security/2017/03/01/10", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/96525", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2016-10228.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202101-20", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5768-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-25013", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-25013", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-25013", + "https://linux.oracle.com/cve/CVE-2019-25013.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210205-0004/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2019-25013", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: buffer over-read in iconv when processing invalid multi-byte input sequences in the EUC-KR encoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-25013", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-25013.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210205-0004/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5768-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-10029", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + "https://access.redhat.com/security/cve/CVE-2020-10029", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10029", + "https://linux.oracle.com/cve/CVE-2020-10029.html", + "https://linux.oracle.com/errata/ELSA-2021-0348.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200327-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-10029", + ], + }, + "category": "Vulnerability", + "description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-10029", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-10029", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10029", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-10029.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-0348.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202006-04", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200327-0003/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-10029", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-27618", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-27618", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27618", + "https://linux.oracle.com/cve/CVE-2020-27618.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210401-0006/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2020-27618", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: iconv when processing invalid multi-byte input sequences fails to advance the input state, which could result in an infinite loop", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-27618", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-27618.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210401-0006/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5768-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-4756", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756", + ], + }, + "category": "Vulnerability", + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-4756", + }, + { + "type": "URL", + "value": "http://cxib.net/stuff/glob-0day.c", + }, + { + "type": "URL", + "value": "http://securityreason.com/achievement_securityalert/89", + }, + { + "type": "URL", + "value": "http://securityreason.com/exploitalert/9223", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-4756", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-20796", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796", + ], + }, + "category": "Vulnerability", + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-20796", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/107160", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190315-0002/", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-20796", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010022", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: stack guard protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010022", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010023", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010023", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109167", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010024", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: ASLR bypass using cache of thread stack and heap", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010024", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109162", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010025", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is "ASLR bypass itself is not a vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: information disclosure of heap addresses of pthread_created thread", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010025", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19126", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19126", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19126", + "https://linux.oracle.com/cve/CVE-2019-19126.html", + "https://linux.oracle.com/errata/ELSA-2020-3861.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + "https://sourceware.org/ml/libc-alpha/2019-11/msg00649.html", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-19126", + ], + }, + "category": "Vulnerability", + "description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19126", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19126", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19126", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-19126.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-3861.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + }, + { + "type": "URL", + "value": "https://sourceware.org/ml/libc-alpha/2019-11/msg00649.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19126", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-9192", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-9192", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-9192", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-27645", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-27645", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27645", + "https://linux.oracle.com/cve/CVE-2021-27645.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + "https://security.gentoo.org/glsa/202107-07", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27462", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2021-27645", + ], + }, + "category": "Vulnerability", + "description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "glibc: Use-after-free in addgetnetgrentX function in netgroupcache.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-27645", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-27645", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27645", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-27645.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9560.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27462", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-27645", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-8457", + "installedVersion": "5.3.28+dfsg1-0.5", + "packageName": "libdb5.3", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + "https://access.redhat.com/security/cve/CVE-2019-8457", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + "https://linux.oracle.com/cve/CVE-2019-8457.html", + "https://linux.oracle.com/errata/ELSA-2020-1810.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + "https://security.netapp.com/advisory/ntap-20190606-0002/", + "https://ubuntu.com/security/notices/USN-4004-1", + "https://ubuntu.com/security/notices/USN-4004-2", + "https://ubuntu.com/security/notices/USN-4019-1", + "https://ubuntu.com/security/notices/USN-4019-2", + "https://usn.ubuntu.com/4004-1/", + "https://usn.ubuntu.com/4004-2/", + "https://usn.ubuntu.com/4019-1/", + "https://usn.ubuntu.com/4019-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-8457", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.sqlite.org/releaselog/3_28_0.html", + "https://www.sqlite.org/src/info/90acdbfce9c08858", + ], + }, + "category": "Vulnerability", + "description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "sqlite: heap out-of-bound read in function rtreenode()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-8457", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-8457.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1810.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190606-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4004-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4004-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4019-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4019-2", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4004-1/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4004-2/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4019-1/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4019-2/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2020.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2020.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2020.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + }, + { + "type": "URL", + "value": "https://www.sqlite.org/releaselog/3_28_0.html", + }, + { + "type": "URL", + "value": "https://www.sqlite.org/src/info/90acdbfce9c08858", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-12886", + "installedVersion": "1:8.3.0-6", + "packageName": "libgcc1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-12886", + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379&view=markup", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "https://www.cve.org/CVERecord?id=CVE-2018-12886", + "https://www.gnu.org/software/gcc/gcc-8/changes.html", + ], + }, + "category": "Vulnerability", + "description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-12886", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379&view=markup", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://www.gnu.org/software/gcc/gcc-8/changes.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-15847", + "installedVersion": "1:8.3.0-6", + "packageName": "libgcc1", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + "https://access.redhat.com/security/cve/CVE-2019-15847", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + "https://linux.oracle.com/cve/CVE-2019-15847.html", + "https://linux.oracle.com/errata/ELSA-2020-1864.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + "https://www.cve.org/CVERecord?id=CVE-2019-15847", + ], + }, + "category": "Vulnerability", + "description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "gcc: POWER9 "DARN" RNG intrinsic produces repeated output", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-15847", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-15847", + }, + { + "type": "URL", + "value": "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-15847.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1864.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-15847", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-33560", + "installedVersion": "1.8.4-5", + "packageName": "libgcrypt20", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + "https://access.redhat.com/security/cve/CVE-2021-33560", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + "https://dev.gnupg.org/T5305", + "https://dev.gnupg.org/T5328", + "https://dev.gnupg.org/T5466", + "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2021-4409.html", + "https://linux.oracle.com/cve/CVE-2021-33560.html", + "https://linux.oracle.com/errata/ELSA-2022-9263.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33560", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + ], + }, + "category": "Vulnerability", + "description": "Libgcrypt before 1.8.8 and 1.9.x before 1.9.3 mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm, and the window size is not chosen appropriately. This, for example, affects use of ElGamal in OpenPGP.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libgcrypt: mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33560", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5305", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5328", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5466", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + }, + { + "type": "URL", + "value": "https://eprint.iacr.org/2021/923", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4409.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-33560.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9263.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-13", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5080-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5080-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-13627", + "installedVersion": "1.8.4-5", + "packageName": "libgcrypt20", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00060.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00018.html", + "http://www.openwall.com/lists/oss-security/2019/10/02/2", + "https://access.redhat.com/security/cve/CVE-2019-13627", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-13627", + "https://dev.gnupg.org/T4683", + "https://github.com/gpg/libgcrypt/releases/tag/libgcrypt-1.8.5", + "https://linux.oracle.com/cve/CVE-2019-13627.html", + "https://linux.oracle.com/errata/ELSA-2020-4482.html", + "https://lists.debian.org/debian-lts-announce/2019/09/msg00024.html", + "https://lists.debian.org/debian-lts-announce/2020/01/msg00001.html", + "https://minerva.crocs.fi.muni.cz/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-13627", + "https://security-tracker.debian.org/tracker/CVE-2019-13627", + "https://security.gentoo.org/glsa/202003-32", + "https://ubuntu.com/security/notices/USN-4236-1", + "https://ubuntu.com/security/notices/USN-4236-2", + "https://ubuntu.com/security/notices/USN-4236-3", + "https://usn.ubuntu.com/4236-1/", + "https://usn.ubuntu.com/4236-2/", + "https://usn.ubuntu.com/4236-3/", + "https://www.cve.org/CVERecord?id=CVE-2019-13627", + ], + }, + "category": "Vulnerability", + "description": "It was discovered that there was a ECDSA timing attack in the libgcrypt20 cryptographic library. Version affected: 1.8.4-5, 1.7.6-2+deb9u3, and 1.6.3-2+deb8u4. Versions fixed: 1.8.5-2 and 1.6.3-2+deb8u7.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libgcrypt: ECDSA timing attack allowing private key leak", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-13627", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00060.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00018.html", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2019/10/02/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-13627", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-13627", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T4683", + }, + { + "type": "URL", + "value": "https://github.com/gpg/libgcrypt/releases/tag/libgcrypt-1.8.5", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-13627.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4482.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2019/09/msg00024.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2020/01/msg00001.html", + }, + { + "type": "URL", + "value": "https://minerva.crocs.fi.muni.cz/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-13627", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-13627", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202003-32", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4236-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4236-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4236-3", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4236-1/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4236-2/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4236-3/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-13627", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.8.4-5+deb10u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-40528", + "installedVersion": "1.8.4-5", + "packageName": "libgcrypt20", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:5311", + "https://access.redhat.com/security/cve/CVE-2021-40528", + "https://bugzilla.redhat.com/2002816", + "https://bugzilla.redhat.com/show_bug.cgi?id=2002816", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-40528", + "https://dev.gnupg.org/rCb118681ebc4c9ea4b9da79b0f9541405a64f4c13", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2022-5311.html", + "https://errata.rockylinux.org/RLSA-2022:5311", + "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=commit;h=3462280f2e23e16adf3ed5176e0f2413d8861320", + "https://ibm.github.io/system-security-research-updates/2021/07/20/insecurity-elgamal-pt1", + "https://ibm.github.io/system-security-research-updates/2021/09/06/insecurity-elgamal-pt2", + "https://linux.oracle.com/cve/CVE-2021-40528.html", + "https://linux.oracle.com/errata/ELSA-2022-9564.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-40528", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-40528", + ], + }, + "category": "Vulnerability", + "description": "The ElGamal implementation in Libgcrypt before 1.9.4 allows plaintext recovery because, during interaction between two cryptographic libraries, a certain dangerous combination of the prime defined by the receiver's public key, the generator defined by the receiver's public key, and the sender's ephemeral exponents can lead to a cross-configuration attack against OpenPGP.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "ElGamal implementation allows plaintext recovery", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-40528", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:5311", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-40528", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2002816", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2002816", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-40528", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/rCb118681ebc4c9ea4b9da79b0f9541405a64f4c13", + }, + { + "type": "URL", + "value": "https://eprint.iacr.org/2021/923", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2022-5311.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5311", + }, + { + "type": "URL", + "value": "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=commit;h=3462280f2e23e16adf3ed5176e0f2413d8861320", + }, + { + "type": "URL", + "value": "https://ibm.github.io/system-security-research-updates/2021/07/20/insecurity-elgamal-pt1", + }, + { + "type": "URL", + "value": "https://ibm.github.io/system-security-research-updates/2021/09/06/insecurity-elgamal-pt2", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-40528.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9564.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-40528", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-13", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5080-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5080-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-40528", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-6829", + "installedVersion": "1.8.4-5", + "packageName": "libgcrypt20", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-6829", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + "https://www.cve.org/CVERecord?id=CVE-2018-6829", + "https://www.oracle.com/security-alerts/cpujan2020.html", + ], + }, + "category": "Vulnerability", + "description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libgcrypt: ElGamal implementation doesn't have semantic security due to incorrectly encoded plaintexts possibly allowing to obtain sensitive information", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-6829", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-6829", + }, + { + "type": "URL", + "value": "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + }, + { + "type": "URL", + "value": "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + }, + { + "type": "URL", + "value": "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-6829", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2020.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2:6.1.2+dfsg-4+deb10u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-43618", + "installedVersion": "2:6.1.2+dfsg-4", + "packageName": "libgmp10", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/8", + "http://www.openwall.com/lists/oss-security/2022/10/13/3", + "https://access.redhat.com/security/cve/CVE-2021-43618", + "https://bugs.debian.org/994405", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-43618", + "https://gmplib.org/list-archives/gmp-bugs/2021-September/005077.html", + "https://gmplib.org/repo/gmp-6.2/rev/561a9c25298e", + "https://lists.debian.org/debian-lts-announce/2021/12/msg00001.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43618", + "https://security.netapp.com/advisory/ntap-20221111-0001/", + "https://ubuntu.com/security/notices/USN-5672-1", + "https://ubuntu.com/security/notices/USN-5672-2", + "https://www.cve.org/CVERecord?id=CVE-2021-43618", + ], + }, + "category": "Vulnerability", + "description": "GNU Multiple Precision Arithmetic Library (GMP) through 6.2.1 has an mpz/inp_raw.c integer overflow and resultant buffer overflow via crafted input, leading to a segmentation fault on 32-bit platforms.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Integer overflow and resultant buffer overflow via crafted input", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-43618", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/8", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/10/13/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-43618", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/994405", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-43618", + }, + { + "type": "URL", + "value": "https://gmplib.org/list-archives/gmp-bugs/2021-September/005077.html", + }, + { + "type": "URL", + "value": "https://gmplib.org/repo/gmp-6.2/rev/561a9c25298e", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/12/msg00001.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-43618", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221111-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5672-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5672-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-43618", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.6.7-4+deb10u7", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-20231", + "installedVersion": "3.6.7-4+deb10u5", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-20231", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://gitlab.com/gnutls/gnutls/-/issues/1151", + "https://linux.oracle.com/cve/CVE-2021-20231.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.apache.org/thread.html/r50661d6f0082709aad9a584431b59ec364f9974b63b07e0800230168@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5d4001031e7790d8c6396c499522b4ed2aab782da87b1a14184793bb@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5f88bed447742fcc5c47bf1c7be965ef450131914a6e1f85feba2779@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r6ac143ba6dd98bd4bf6bf010d46e56e254056459721ba18822d611f7@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r9cbc69e57276413788e90a6ee16c7c034ea4258d31935b70db2bd158@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rcd70a4c88a47a75fd2d5f3ffb7cee8c2a18c713320bd90fdcb57495f@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rf5e1256d870193def4a82ad89ab95e63943a313b5ff0d81aa87e4532@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rfd5273d72d244178441e6904a2f2b41a3268f569e8092ea0b3b2bb20@%3Cissues.spark.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OSLAE6PP33A7VYRYMYMUVB3U6B26GZER/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20231", + "https://security.netapp.com/advisory/ntap-20210416-0005/", + "https://ubuntu.com/security/notices/USN-5029-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20231", + "https://www.gnutls.org/security-new.html#GNUTLS-SA-2021-03-10", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in gnutls. A use after free issue in client sending key_share extension may lead to memory corruption and other consequences.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "gnutls: Use after free in client key_share extension", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-20231", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4451.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4451", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1151", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-20231.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9221.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r50661d6f0082709aad9a584431b59ec364f9974b63b07e0800230168@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r5d4001031e7790d8c6396c499522b4ed2aab782da87b1a14184793bb@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r5f88bed447742fcc5c47bf1c7be965ef450131914a6e1f85feba2779@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r6ac143ba6dd98bd4bf6bf010d46e56e254056459721ba18822d611f7@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r9cbc69e57276413788e90a6ee16c7c034ea4258d31935b70db2bd158@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rcd70a4c88a47a75fd2d5f3ffb7cee8c2a18c713320bd90fdcb57495f@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf5e1256d870193def4a82ad89ab95e63943a313b5ff0d81aa87e4532@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rfd5273d72d244178441e6904a2f2b41a3268f569e8092ea0b3b2bb20@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OSLAE6PP33A7VYRYMYMUVB3U6B26GZER/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210416-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5029-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://www.gnutls.org/security-new.html#GNUTLS-SA-2021-03-10", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.6.7-4+deb10u7", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-20232", + "installedVersion": "3.6.7-4+deb10u5", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-20232", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://gitlab.com/gnutls/gnutls/-/issues/1151", + "https://linux.oracle.com/cve/CVE-2021-20232.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.apache.org/thread.html/r50661d6f0082709aad9a584431b59ec364f9974b63b07e0800230168@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5d4001031e7790d8c6396c499522b4ed2aab782da87b1a14184793bb@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5f88bed447742fcc5c47bf1c7be965ef450131914a6e1f85feba2779@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r6ac143ba6dd98bd4bf6bf010d46e56e254056459721ba18822d611f7@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r9cbc69e57276413788e90a6ee16c7c034ea4258d31935b70db2bd158@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rcd70a4c88a47a75fd2d5f3ffb7cee8c2a18c713320bd90fdcb57495f@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rf5e1256d870193def4a82ad89ab95e63943a313b5ff0d81aa87e4532@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rfd5273d72d244178441e6904a2f2b41a3268f569e8092ea0b3b2bb20@%3Cissues.spark.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OSLAE6PP33A7VYRYMYMUVB3U6B26GZER/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20232", + "https://security.netapp.com/advisory/ntap-20210416-0005/", + "https://ubuntu.com/security/notices/USN-5029-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20232", + "https://www.gnutls.org/security-new.html#GNUTLS-SA-2021-03-10", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in gnutls. A use after free issue in client_send_params in lib/ext/pre_shared_key.c may lead to memory corruption and other potential consequences.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "gnutls: Use after free in client_send_params in lib/ext/pre_shared_key.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-20232", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4451.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4451", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1151", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-20232.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9221.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r50661d6f0082709aad9a584431b59ec364f9974b63b07e0800230168@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r5d4001031e7790d8c6396c499522b4ed2aab782da87b1a14184793bb@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r5f88bed447742fcc5c47bf1c7be965ef450131914a6e1f85feba2779@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r6ac143ba6dd98bd4bf6bf010d46e56e254056459721ba18822d611f7@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r9cbc69e57276413788e90a6ee16c7c034ea4258d31935b70db2bd158@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rcd70a4c88a47a75fd2d5f3ffb7cee8c2a18c713320bd90fdcb57495f@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf5e1256d870193def4a82ad89ab95e63943a313b5ff0d81aa87e4532@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rfd5273d72d244178441e6904a2f2b41a3268f569e8092ea0b3b2bb20@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OSLAE6PP33A7VYRYMYMUVB3U6B26GZER/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210416-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5029-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://www.gnutls.org/security-new.html#GNUTLS-SA-2021-03-10", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.6.7-4+deb10u7", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-24659", + "installedVersion": "3.6.7-4+deb10u5", + "packageName": "libgnutls30", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-10/msg00054.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-10/msg00060.html", + "https://access.redhat.com/security/cve/CVE-2020-24659", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-24659", + "https://gitlab.com/gnutls/gnutls/-/issues/1071", + "https://linux.oracle.com/cve/CVE-2020-24659.html", + "https://linux.oracle.com/errata/ELSA-2020-5483.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/62BUAI4FQQLG6VTKRT7SUZPGJJ4NASQ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AWN56FDLQQXT2D2YHNI4TYH432TDMQ7N/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-24659", + "https://security.gentoo.org/glsa/202009-01", + "https://security.netapp.com/advisory/ntap-20200911-0006/", + "https://ubuntu.com/security/notices/USN-4491-1", + "https://usn.ubuntu.com/4491-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-24659", + "https://www.gnutls.org/security-new.html#GNUTLS-SA-2020-09-04", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in GnuTLS before 3.6.15. A server can trigger a NULL pointer dereference in a TLS 1.3 client if a no_renegotiation alert is sent with unexpected timing, and then an invalid second handshake occurs. The crash happens in the application's error handling path, where the gnutls_deinit function is called after detecting a handshake failure.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "gnutls: Heap buffer overflow in handshake with no_renegotiation alert sent", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-24659", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-10/msg00054.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-10/msg00060.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-24659", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-24659", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1071", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-24659.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-5483.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/62BUAI4FQQLG6VTKRT7SUZPGJJ4NASQ3/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AWN56FDLQQXT2D2YHNI4TYH432TDMQ7N/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-24659", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202009-01", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200911-0006/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4491-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4491-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-24659", + }, + { + "type": "URL", + "value": "https://www.gnutls.org/security-new.html#GNUTLS-SA-2020-09-04", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.6.7-4+deb10u9", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2509", + "installedVersion": "3.6.7-4+deb10u5", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6854", + "https://access.redhat.com/security/cve/CVE-2022-2509", + "https://bugzilla.redhat.com/2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2076626", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108635", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2119770", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2509", + "https://errata.almalinux.org/9/ALSA-2022-6854.html", + "https://errata.rockylinux.org/RLSA-2022:6854", + "https://gnutls.org/security-new.html (GNUTLS-SA-2022-07-07)", + "https://gnutls.org/security-new.html#GNUTLS-SA-2022-07-07", + "https://linux.oracle.com/cve/CVE-2022-2509.html", + "https://linux.oracle.com/errata/ELSA-2022-7105.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00002.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6FL27JS3VM74YEQU7PGB62USO3KSBYZX/", + "https://lists.gnupg.org/pipermail/gnutls-help/2022-July/004746.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2509", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2509", + "https://www.debian.org/security/2022/dsa-5203", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability found in gnutls. This security flaw happens because of a double free error occurs during verification of pkcs7 signatures in gnutls_pkcs7_verify function.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Double free during gnutls_pkcs7_verify", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2509", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6854", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2108977", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2076626", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2108635", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2108977", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2119770", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6854.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:6854", + }, + { + "type": "URL", + "value": "https://gnutls.org/security-new.html (GNUTLS-SA-2022-07-07)", + }, + { + "type": "URL", + "value": "https://gnutls.org/security-new.html#GNUTLS-SA-2022-07-07", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2509.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-7105.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/08/msg00002.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6FL27JS3VM74YEQU7PGB62USO3KSBYZX/", + }, + { + "type": "URL", + "value": "https://lists.gnupg.org/pipermail/gnutls-help/2022-July/004746.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5550-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5203", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.6.7-4+deb10u10", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0361", + "installedVersion": "3.6.7-4+deb10u5", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:1141", + "https://access.redhat.com/security/cve/CVE-2023-0361", + "https://bugzilla.redhat.com/2162596", + "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + "https://errata.almalinux.org/9/ALSA-2023-1141.html", + "https://errata.rockylinux.org/RLSA-2023:1569", + "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + "https://gitlab.com/gnutls/gnutls/-/issues/1050", + "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + "https://linux.oracle.com/cve/CVE-2023-0361.html", + "https://linux.oracle.com/errata/ELSA-2023-1569.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + "https://security.netapp.com/advisory/ntap-20230324-0005/", + "https://ubuntu.com/security/notices/USN-5901-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0361", + ], + }, + "category": "Vulnerability", + "description": "A timing side-channel in the handling of RSA ClientKeyExchange messages was discovered in GnuTLS. This side-channel can be sufficient to recover the key encrypted in the RSA ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption the attacker would need to send a large amount of specially crafted messages to the vulnerable server. By recovering the secret from the ClientKeyExchange message, the attacker would be able to decrypt the application data exchanged over that connection.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "timing side-channel in the TLS RSA key exchange code", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0361", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:1141", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0361", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2162596", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-1141.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:1569", + }, + { + "type": "URL", + "value": "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1050", + }, + { + "type": "URL", + "value": "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0361.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-1569.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230324-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5901-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0361", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.6.7-4+deb10u9", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-4209", + "installedVersion": "3.6.7-4+deb10u5", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-4209", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044156", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-4209", + "https://gitlab.com/gnutls/gnutls/-/commit/3db352734472d851318944db13be73da61300568", + "https://gitlab.com/gnutls/gnutls/-/issues/1306", + "https://gitlab.com/gnutls/gnutls/-/merge_requests/1503", + "https://nvd.nist.gov/vuln/detail/CVE-2021-4209", + "https://security.netapp.com/advisory/ntap-20220915-0005/", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://ubuntu.com/security/notices/USN-5750-1", + "https://www.cve.org/CVERecord?id=CVE-2021-4209", + ], + }, + "category": "Vulnerability", + "description": "A NULL pointer dereference flaw was found in GnuTLS. As Nettle's hash update functions internally call memcpy, providing zero-length input may cause undefined behavior. This flaw leads to a denial of service after authentication in rare circumstances.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "GnuTLS: Null pointer dereference in MD_UPDATE", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-4209", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-4209", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2044156", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-4209", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/commit/3db352734472d851318944db13be73da61300568", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1306", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/merge_requests/1503", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-4209", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220915-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5550-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5750-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-4209", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3389", + "installedVersion": "3.6.7-4+deb10u5", + "packageName": "libgnutls30", + "references": [ + "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + "http://curl.haxx.se/docs/adv_20120124B.html", + "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + "http://ekoparty.org/2011/juliano-rizzo.php", + "http://eprint.iacr.org/2004/111", + "http://eprint.iacr.org/2006/136", + "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + "http://marc.info/?l=bugtraq&m=132750579901589&w=2", + "http://marc.info/?l=bugtraq&m=132872385320240&w=2", + "http://marc.info/?l=bugtraq&m=133365109612558&w=2", + "http://marc.info/?l=bugtraq&m=133728004526190&w=2", + "http://marc.info/?l=bugtraq&m=134254866602253&w=2", + "http://marc.info/?l=bugtraq&m=134254957702612&w=2", + "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + "http://osvdb.org/74829", + "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + "http://secunia.com/advisories/45791", + "http://secunia.com/advisories/47998", + "http://secunia.com/advisories/48256", + "http://secunia.com/advisories/48692", + "http://secunia.com/advisories/48915", + "http://secunia.com/advisories/48948", + "http://secunia.com/advisories/49198", + "http://secunia.com/advisories/55322", + "http://secunia.com/advisories/55350", + "http://secunia.com/advisories/55351", + "http://security.gentoo.org/glsa/glsa-201203-02.xml", + "http://security.gentoo.org/glsa/glsa-201406-32.xml", + "http://support.apple.com/kb/HT4999", + "http://support.apple.com/kb/HT5001", + "http://support.apple.com/kb/HT5130", + "http://support.apple.com/kb/HT5281", + "http://support.apple.com/kb/HT5501", + "http://support.apple.com/kb/HT6150", + "http://technet.microsoft.com/security/advisory/2588513", + "http://vnhacker.blogspot.com/2011/09/beast.html", + "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + "http://www.debian.org/security/2012/dsa-2398", + "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + "http://www.ibm.com/developerworks/java/jdk/alerts/", + "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + "http://www.insecure.cl/Beast-SSL.rar", + "http://www.kb.cert.org/vuls/id/864643", + "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + "http://www.opera.com/docs/changelogs/mac/1151/", + "http://www.opera.com/docs/changelogs/mac/1160/", + "http://www.opera.com/docs/changelogs/unix/1151/", + "http://www.opera.com/docs/changelogs/unix/1160/", + "http://www.opera.com/docs/changelogs/windows/1151/", + "http://www.opera.com/docs/changelogs/windows/1160/", + "http://www.opera.com/support/kb/view/1004/", + "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + "http://www.securityfocus.com/bid/49388", + "http://www.securityfocus.com/bid/49778", + "http://www.securitytracker.com/id/1029190", + "http://www.securitytracker.com/id?1025997", + "http://www.securitytracker.com/id?1026103", + "http://www.securitytracker.com/id?1026704", + "http://www.ubuntu.com/usn/USN-1263-1", + "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + "https://access.redhat.com/security/cve/CVE-2011-3389", + "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + "https://bugzilla.novell.com/show_bug.cgi?id=719047", + "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + "https://hermes.opensuse.org/messages/13154861", + "https://hermes.opensuse.org/messages/13155432", + "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + "https://linux.oracle.com/cve/CVE-2011-3389.html", + "https://linux.oracle.com/errata/ELSA-2011-1380.html", + "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + "https://ubuntu.com/security/notices/USN-1263-1", + "https://www.cve.org/CVERecord?id=CVE-2011-3389", + ], + }, + "category": "Vulnerability", + "description": "The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a "BEAST" attack.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3389", + }, + { + "type": "URL", + "value": "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + }, + { + "type": "URL", + "value": "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + }, + { + "type": "URL", + "value": "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + }, + { + "type": "URL", + "value": "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + }, + { + "type": "URL", + "value": "http://curl.haxx.se/docs/adv_20120124B.html", + }, + { + "type": "URL", + "value": "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + }, + { + "type": "URL", + "value": "http://ekoparty.org/2011/juliano-rizzo.php", + }, + { + "type": "URL", + "value": "http://eprint.iacr.org/2004/111", + }, + { + "type": "URL", + "value": "http://eprint.iacr.org/2006/136", + }, + { + "type": "URL", + "value": "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + }, + { + "type": "URL", + "value": "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=132750579901589&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=132872385320240&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=133365109612558&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=133728004526190&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=134254866602253&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=134254957702612&w=2", + }, + { + "type": "URL", + "value": "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + }, + { + "type": "URL", + "value": "http://osvdb.org/74829", + }, + { + "type": "URL", + "value": "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + }, + { + "type": "URL", + "value": "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/45791", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/47998", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48256", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48692", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48915", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48948", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/49198", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/55322", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/55350", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/55351", + }, + { + "type": "URL", + "value": "http://security.gentoo.org/glsa/glsa-201203-02.xml", + }, + { + "type": "URL", + "value": "http://security.gentoo.org/glsa/glsa-201406-32.xml", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT4999", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5001", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5130", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5281", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5501", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT6150", + }, + { + "type": "URL", + "value": "http://technet.microsoft.com/security/advisory/2588513", + }, + { + "type": "URL", + "value": "http://vnhacker.blogspot.com/2011/09/beast.html", + }, + { + "type": "URL", + "value": "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + }, + { + "type": "URL", + "value": "http://www.debian.org/security/2012/dsa-2398", + }, + { + "type": "URL", + "value": "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + }, + { + "type": "URL", + "value": "http://www.ibm.com/developerworks/java/jdk/alerts/", + }, + { + "type": "URL", + "value": "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + }, + { + "type": "URL", + "value": "http://www.insecure.cl/Beast-SSL.rar", + }, + { + "type": "URL", + "value": "http://www.kb.cert.org/vuls/id/864643", + }, + { + "type": "URL", + "value": "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/mac/1151/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/mac/1160/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/unix/1151/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/unix/1160/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/windows/1151/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/windows/1160/", + }, + { + "type": "URL", + "value": "http://www.opera.com/support/kb/view/1004/", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + }, + { + "type": "URL", + "value": "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + }, + { + "type": "URL", + "value": "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/49388", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/49778", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id/1029190", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id?1025997", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id?1026103", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id?1026704", + }, + { + "type": "URL", + "value": "http://www.ubuntu.com/usn/USN-1263-1", + }, + { + "type": "URL", + "value": "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2011-3389", + }, + { + "type": "URL", + "value": "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + }, + { + "type": "URL", + "value": "https://bugzilla.novell.com/show_bug.cgi?id=719047", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + }, + { + "type": "URL", + "value": "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + }, + { + "type": "URL", + "value": "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + }, + { + "type": "URL", + "value": "https://hermes.opensuse.org/messages/13154861", + }, + { + "type": "URL", + "value": "https://hermes.opensuse.org/messages/13155432", + }, + { + "type": "URL", + "value": "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2011-3389.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2011-1380.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + }, + { + "type": "URL", + "value": "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-1263-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2011-3389", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "3.4.1-1+deb10u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-20305", + "installedVersion": "3.4.1-1", + "packageName": "libhogweed4", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-20305", + "https://bugzilla.redhat.com/show_bug.cgi?id=1942533", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20305", + "https://linux.oracle.com/cve/CVE-2021-20305.html", + "https://linux.oracle.com/errata/ELSA-2021-1206.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MQKWVVMAIDAJ7YAA3VVO32BHLDOH2E63/", + "https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009457.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20305", + "https://security.gentoo.org/glsa/202105-31", + "https://security.netapp.com/advisory/ntap-20211022-0002/", + "https://ubuntu.com/security/notices/USN-4906-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20305", + "https://www.debian.org/security/2021/dsa-4933", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in Nettle in versions before 3.7.2, where several Nettle signature verification functions (GOST DSA, EDDSA & ECDSA) result in the Elliptic Curve Cryptography point (ECC) multiply function being called with out-of-range scalers, possibly resulting in incorrect results. This flaw allows an attacker to force an invalid signature, causing an assertion failure or possible validation. The highest threat to this vulnerability is to confidentiality, integrity, as well as system availability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "nettle: Out of bounds memory access in signature verification", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-20305", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1942533", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-20305.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-1206.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MQKWVVMAIDAJ7YAA3VVO32BHLDOH2E63/", + }, + { + "type": "URL", + "value": "https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009457.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202105-31", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211022-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4906-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4933", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.4.1-1+deb10u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3580", + "installedVersion": "3.4.1-1", + "packageName": "libhogweed4", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-3580", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://linux.oracle.com/cve/CVE-2021-3580.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3580", + "https://security.netapp.com/advisory/ntap-20211104-0006/", + "https://ubuntu.com/security/notices/USN-4990-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3580", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the way nettle's RSA decryption functions handled specially crafted ciphertext. An attacker could use this flaw to provide a manipulated ciphertext leading to application crash and denial of service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "nettle: Remote crash in RSA decryption via manipulated ciphertext", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3580", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4451.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4451", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3580.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9221.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211104-0006/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4990-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3580", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-12290", + "installedVersion": "2.0.5-1+deb10u1", + "packageName": "libidn2-0", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00008.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00009.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12290", + "https://gitlab.com/libidn/libidn2/commit/241e8f486134793cb0f4a5b0e5817a97883401f5", + "https://gitlab.com/libidn/libidn2/commit/614117ef6e4c60e1950d742e3edf0a0ef8d389de", + "https://gitlab.com/libidn/libidn2/merge_requests/71", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UFT76Y7OSGPZV3EBEHD6ISVUM3DLARM/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KXDKYWFV6N2HHVSE67FFDM7G3FEL2ZNE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ONG3GJRRJO35COPGVJXXSZLU4J5Y42AT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RSI4TI2JTQWQ3YEUX5X36GTVGKO4QKZ5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U6ZXL2RDNQRAHCMKWPOMJFKYJ344X4HL/", + "https://security.gentoo.org/glsa/202003-63", + "https://ubuntu.com/security/notices/USN-4168-1", + "https://usn.ubuntu.com/4168-1/", + ], + }, + "category": "Vulnerability", + "description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specifi ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-12290", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00008.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00009.html", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12290", + }, + { + "type": "URL", + "value": "https://gitlab.com/libidn/libidn2/commit/241e8f486134793cb0f4a5b0e5817a97883401f5", + }, + { + "type": "URL", + "value": "https://gitlab.com/libidn/libidn2/commit/614117ef6e4c60e1950d742e3edf0a0ef8d389de", + }, + { + "type": "URL", + "value": "https://gitlab.com/libidn/libidn2/merge_requests/71", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UFT76Y7OSGPZV3EBEHD6ISVUM3DLARM/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KXDKYWFV6N2HHVSE67FFDM7G3FEL2ZNE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ONG3GJRRJO35COPGVJXXSZLU4J5Y42AT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RSI4TI2JTQWQ3YEUX5X36GTVGKO4QKZ5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U6ZXL2RDNQRAHCMKWPOMJFKYJ344X4HL/", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202003-63", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4168-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4168-1/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "libip4tc2", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-11360", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "libip4tc2", + "references": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360", + ], + }, + "category": "Vulnerability", + "description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "iptables: buffer overflow in iptables-restore", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-11360", + }, + { + "type": "URL", + "value": "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-11360", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "libip6tc2", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-11360", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "libip6tc2", + "references": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360", + ], + }, + "category": "Vulnerability", + "description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "iptables: buffer overflow in iptables-restore", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-11360", + }, + { + "type": "URL", + "value": "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-11360", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.8.3-1+deb10u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3520", + "installedVersion": "1.8.3-1", + "packageName": "liblz4-1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-3520", + "https://bugzilla.redhat.com/show_bug.cgi?id=1954559", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3520", + "https://errata.almalinux.org/8/ALSA-2021-2575.html", + "https://errata.rockylinux.org/RLSA-2021:2575", + "https://github.com/lz4/lz4/pull/972", + "https://linux.oracle.com/cve/CVE-2021-3520.html", + "https://linux.oracle.com/errata/ELSA-2021-2575.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3520", + "https://security.netapp.com/advisory/ntap-20211104-0005/", + "https://ubuntu.com/security/notices/USN-4968-1", + "https://ubuntu.com/security/notices/USN-4968-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3520", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + ], + }, + "category": "Vulnerability", + "description": "There's a flaw in lz4. An attacker who submits a crafted file to an application linked with lz4 may be able to trigger an integer overflow, leading to calling of memmove() on a negative size argument, causing an out-of-bounds write and/or a crash. The greatest impact of this flaw is to availability, with some potential impact to confidentiality and integrity as well.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "memory corruption due to an integer overflow bug caused by memmove argument", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3520", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3520", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1954559", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3520", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-2575.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:2575", + }, + { + "type": "URL", + "value": "https://github.com/lz4/lz4/pull/972", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3520.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-2575.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3520", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211104-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4968-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4968-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3520", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-17543", + "installedVersion": "1.8.3-1", + "packageName": "liblz4-1", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00069.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00070.html", + "https://access.redhat.com/security/cve/CVE-2019-17543", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=15941", + "https://github.com/lz4/lz4/compare/v1.9.1...v1.9.2", + "https://github.com/lz4/lz4/issues/801", + "https://github.com/lz4/lz4/pull/756", + "https://github.com/lz4/lz4/pull/760", + "https://lists.apache.org/thread.html/25015588b770d67470b7ba7ea49a305d6735dd7f00eabe7d50ec1e17@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/543302d55e2d2da4311994e9b0debdc676bf3fd05e1a2be3407aa2d6@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/793012683dc0fa6819b7c2560e6cf990811014c40c7d75412099c357@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/9ff0606d16be2ab6a81619e1c9e23c3e251756638e36272c8c8b7fa3@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/f0038c4fab2ee25aee849ebeff6b33b3aa89e07ccfb06b5c87b36316@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/f506bc371d4a068d5d84d7361293568f61167d3a1c3e91f0def2d7d3@%3Cdev.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/r0fb226357e7988a241b06b93bab065bcea2eb38658b382e485960e26@%3Cissues.kudu.apache.org%3E", + "https://lists.apache.org/thread.html/r4068ba81066792f2b4d208b39c4c4713c5d4c79bd8cb6c1904af5720@%3Cissues.kudu.apache.org%3E", + "https://lists.apache.org/thread.html/r7bc72200f94298bc9a0e35637f388deb53467ca4b2e2ad1ff66d8960@%3Cissues.kudu.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-17543", + "https://security.netapp.com/advisory/ntap-20210723-0001/", + "https://www.cve.org/CVERecord?id=CVE-2019-17543", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuoct2020.html", + ], + }, + "category": "Vulnerability", + "description": "LZ4 before 1.9.2 has a heap-based buffer overflow in LZ4_write32 (related to LZ4_compress_destSize), affecting applications that call LZ4_compress_fast with a large input. (This issue can also lead to data corruption.) NOTE: the vendor states "only a few specific / uncommon usages of the API are at risk."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "lz4: heap-based buffer overflow in LZ4_write32", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-17543", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00069.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00070.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-17543", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=15941", + }, + { + "type": "URL", + "value": "https://github.com/lz4/lz4/compare/v1.9.1...v1.9.2", + }, + { + "type": "URL", + "value": "https://github.com/lz4/lz4/issues/801", + }, + { + "type": "URL", + "value": "https://github.com/lz4/lz4/pull/756", + }, + { + "type": "URL", + "value": "https://github.com/lz4/lz4/pull/760", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/25015588b770d67470b7ba7ea49a305d6735dd7f00eabe7d50ec1e17@%3Cissues.arrow.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/543302d55e2d2da4311994e9b0debdc676bf3fd05e1a2be3407aa2d6@%3Cissues.arrow.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/793012683dc0fa6819b7c2560e6cf990811014c40c7d75412099c357@%3Cissues.arrow.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/9ff0606d16be2ab6a81619e1c9e23c3e251756638e36272c8c8b7fa3@%3Cissues.arrow.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/f0038c4fab2ee25aee849ebeff6b33b3aa89e07ccfb06b5c87b36316@%3Cissues.arrow.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/f506bc371d4a068d5d84d7361293568f61167d3a1c3e91f0def2d7d3@%3Cdev.arrow.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r0fb226357e7988a241b06b93bab065bcea2eb38658b382e485960e26@%3Cissues.kudu.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r4068ba81066792f2b4d208b39c4c4713c5d4c79bd8cb6c1904af5720@%3Cissues.kudu.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r7bc72200f94298bc9a0e35637f388deb53467ca4b2e2ad1ff66d8960@%3Cissues.kudu.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-17543", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210723-0001/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-17543", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2020.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "5.2.4-1+deb10u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1271", + "installedVersion": "5.2.4-1", + "packageName": "liblzma5", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8", + ], + }, + "category": "Vulnerability", + "description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "arbitrary-file-write vulnerability", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1271", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:4940", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2073310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-4940.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:4940", + }, + { + "type": "URL", + "value": "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1271.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5052.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-01", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220930-0006/", + }, + { + "type": "URL", + "value": "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-4", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/04/07/8", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.4.1-1+deb10u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-20305", + "installedVersion": "3.4.1-1", + "packageName": "libnettle6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-20305", + "https://bugzilla.redhat.com/show_bug.cgi?id=1942533", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20305", + "https://linux.oracle.com/cve/CVE-2021-20305.html", + "https://linux.oracle.com/errata/ELSA-2021-1206.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MQKWVVMAIDAJ7YAA3VVO32BHLDOH2E63/", + "https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009457.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20305", + "https://security.gentoo.org/glsa/202105-31", + "https://security.netapp.com/advisory/ntap-20211022-0002/", + "https://ubuntu.com/security/notices/USN-4906-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20305", + "https://www.debian.org/security/2021/dsa-4933", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in Nettle in versions before 3.7.2, where several Nettle signature verification functions (GOST DSA, EDDSA & ECDSA) result in the Elliptic Curve Cryptography point (ECC) multiply function being called with out-of-range scalers, possibly resulting in incorrect results. This flaw allows an attacker to force an invalid signature, causing an assertion failure or possible validation. The highest threat to this vulnerability is to confidentiality, integrity, as well as system availability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "nettle: Out of bounds memory access in signature verification", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-20305", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1942533", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-20305.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-1206.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MQKWVVMAIDAJ7YAA3VVO32BHLDOH2E63/", + }, + { + "type": "URL", + "value": "https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009457.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202105-31", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211022-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4906-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4933", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.4.1-1+deb10u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3580", + "installedVersion": "3.4.1-1", + "packageName": "libnettle6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-3580", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://linux.oracle.com/cve/CVE-2021-3580.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3580", + "https://security.netapp.com/advisory/ntap-20211104-0006/", + "https://ubuntu.com/security/notices/USN-4990-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3580", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the way nettle's RSA decryption functions handled specially crafted ciphertext. An attacker could use this flaw to provide a manipulated ciphertext leading to application crash and denial of service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "nettle: Remote crash in RSA decryption via manipulated ciphertext", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3580", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4451.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4451", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3580.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9221.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211104-0006/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4990-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3580", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-14155", + "installedVersion": "2:8.39-12", + "packageName": "libpcre3", + "references": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://about.gitlab.com/releases/2020/07/01/security-release-13-1-2-release/", + "https://access.redhat.com/security/cve/CVE-2020-14155", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2020-14155.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2020-14155", + "https://security.netapp.com/advisory/ntap-20221028-0010/", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2020-14155", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.pcre.org/original/changelog.txt", + ], + }, + "category": "Vulnerability", + "description": "libpcre in PCRE before 8.44 allows an integer overflow via a large number after a (?C substring.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "pcre: Integer overflow when parsing callout numeric arguments", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-14155", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2020/Dec/32", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/Feb/14", + }, + { + "type": "URL", + "value": "https://about.gitlab.com/releases/2020/07/01/security-release-13-1-2-release/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/717920", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4373", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-14155.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221028-0010/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT211931", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212147", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5425-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.pcre.org/original/changelog.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-11164", + "installedVersion": "2:8.39-12", + "packageName": "libpcre3", + "references": [ + "http://openwall.com/lists/oss-security/2017/07/11/3", + "http://www.openwall.com/lists/oss-security/2023/04/11/1", + "http://www.openwall.com/lists/oss-security/2023/04/12/1", + "http://www.securityfocus.com/bid/99575", + "https://access.redhat.com/security/cve/CVE-2017-11164", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + "https://www.cve.org/CVERecord?id=CVE-2017-11164", + ], + }, + "category": "Vulnerability", + "description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-11164", + }, + { + "type": "URL", + "value": "http://openwall.com/lists/oss-security/2017/07/11/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/11/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/12/1", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/99575", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-11164", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-16231", + "installedVersion": "2:8.39-12", + "packageName": "libpcre3", + "references": [ + "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + "http://seclists.org/fulldisclosure/2018/Dec/33", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101688", + "https://access.redhat.com/security/cve/CVE-2017-16231", + "https://bugs.exim.org/show_bug.cgi?id=2047", + "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + "https://www.cve.org/CVERecord?id=CVE-2017-16231", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-16231", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2018/Dec/33", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/11", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/7", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/8", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/101688", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-16231", + }, + { + "type": "URL", + "value": "https://bugs.exim.org/show_bug.cgi?id=2047", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-16231", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-7245", + "installedVersion": "2:8.39-12", + "packageName": "libpcre3", + "references": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7245", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7245", + ], + }, + "category": "Vulnerability", + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-7245", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/97067", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2018:2486", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-7245", + }, + { + "type": "URL", + "value": "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201710-25", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-7245", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-7246", + "installedVersion": "2:8.39-12", + "packageName": "libpcre3", + "references": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7246", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7246", + ], + }, + "category": "Vulnerability", + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-7246", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/97067", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2018:2486", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-7246", + }, + { + "type": "URL", + "value": "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201710-25", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-7246", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-20838", + "installedVersion": "2:8.39-12", + "packageName": "libpcre3", + "references": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://access.redhat.com/security/cve/CVE-2019-20838", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2019-20838.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2019-20838", + "https://www.pcre.org/original/changelog.txt", + ], + }, + "category": "Vulnerability", + "description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "pcre: Buffer over-read in JIT when UTF is disabled and \\X or \\R has fixed quantifier greater than 1", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-20838", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2020/Dec/32", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/Feb/14", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/717920", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4373", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-20838.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT211931", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212147", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5425-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://www.pcre.org/original/changelog.txt", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-9893", + "installedVersion": "2.3.3-4", + "packageName": "libseccomp2", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00022.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00027.html", + "http://www.paul-moore.com/blog/d/2019/03/libseccomp_v240.html", + "https://access.redhat.com/errata/RHSA-2019:3624", + "https://access.redhat.com/security/cve/CVE-2019-9893", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-9893", + "https://github.com/seccomp/libseccomp/issues/139", + "https://linux.oracle.com/cve/CVE-2019-9893.html", + "https://linux.oracle.com/errata/ELSA-2019-3624.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9893", + "https://seclists.org/oss-sec/2019/q1/179", + "https://security.gentoo.org/glsa/201904-18", + "https://ubuntu.com/security/notices/USN-4001-1", + "https://ubuntu.com/security/notices/USN-4001-2", + "https://usn.ubuntu.com/4001-1/", + "https://usn.ubuntu.com/4001-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-9893", + "https://www.openwall.com/lists/oss-security/2019/03/15/1", + ], + }, + "category": "Vulnerability", + "description": "libseccomp before 2.4.0 did not correctly generate 64-bit syscall argument comparisons using the arithmetic operators (LT, GT, LE, GE), which might able to lead to bypassing seccomp filters and potential privilege escalations.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libseccomp: incorrect generation of syscall filters in libseccomp", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-9893", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00022.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00027.html", + }, + { + "type": "URL", + "value": "http://www.paul-moore.com/blog/d/2019/03/libseccomp_v240.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2019:3624", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-9893", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-9893", + }, + { + "type": "URL", + "value": "https://github.com/seccomp/libseccomp/issues/139", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-9893.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2019-3624.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-9893", + }, + { + "type": "URL", + "value": "https://seclists.org/oss-sec/2019/q1/179", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201904-18", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4001-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4001-2", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4001-1/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4001-2/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-9893", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2019/03/15/1", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36084", + "installedVersion": "2.8-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36084", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + "https://linux.oracle.com/cve/CVE-2021-36084.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36084", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libsepol: use-after-free in __cil_verify_classperms()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36084", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36084.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36084", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36085", + "installedVersion": "2.8-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36085", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + "https://linux.oracle.com/cve/CVE-2021-36085.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36085", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libsepol: use-after-free in __cil_verify_classperms()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36085", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36085.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36085", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36086", + "installedVersion": "2.8-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36086", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + "https://linux.oracle.com/cve/CVE-2021-36086.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36086", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "use-after-free in cil_reset_classpermission()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36086", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36086.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36086", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36087", + "installedVersion": "2.8-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36087", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + "https://linux.oracle.com/cve/CVE-2021-36087.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36087", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libsepol: heap-based buffer overflow in ebitmap_match_any()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36087", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36087.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36087", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.1.1d-0+deb10u7", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3711", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/security/cve/CVE-2021-3711", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3711", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + "https://github.com/advisories/GHSA-5ww6-px42-wc85", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + "https://rustsec.org/advisories/RUSTSEC-2021-0097.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://security.netapp.com/advisory/ntap-20211022-0003/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3711", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02", + ], + }, + "category": "Vulnerability", + "description": "In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the "out" parameter can be NULL and, on exit, the "outlen" parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the "out" parameter. A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small. A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer by up to a maximum of 62 bytes altering the contents of other data held after the buffer, possibly changing application behaviour or causing the application to crash. The location of the buffer is application dependent but is typically heap allocated. Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "openssl: SM2 Decryption Buffer Overflow", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3711", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/26/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-5ww6-px42-wc85", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0097.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-02", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210827-0010/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211022-0003/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4963", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210824.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-16", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-02", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1292", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-1292", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-953464.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1ad73b4d27bd8c1b369a3cd453681d3a4f1bb9b2", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=548d3f280a6e737673f5b61fce24bb100108dfeb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e5fd1728ef4c7a5bf7c7a7163ca60370460a6e23", + "https://linux.oracle.com/cve/CVE-2022-1292.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VX4KWHPMKYJL6ZLW4M5IU7E5UV5ZWJQU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNU5M7BXMML26G3GPYKFGQYPQDRSNKDD/", + "https://mta.openssl.org/pipermail/openssl-announce/2022-May/000224.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1292", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0011", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220602-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://ubuntu.com/security/notices/USN-5402-1", + "https://ubuntu.com/security/notices/USN-5402-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1292", + "https://www.debian.org/security/2022/dsa-5139", + "https://www.openssl.org/news/secadv/20220503.txt", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "The c_rehash script does not properly sanitise shell metacharacters to prevent command injection. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.3 (Affected 3.0.0,3.0.1,3.0.2). Fixed in OpenSSL 1.1.1o (Affected 1.1.1-1.1.1n). Fixed in OpenSSL 1.0.2ze (Affected 1.0.2-1.0.2zd).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "c_rehash script allows command injection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1292", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-953464.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1ad73b4d27bd8c1b369a3cd453681d3a4f1bb9b2", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=548d3f280a6e737673f5b61fce24bb100108dfeb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e5fd1728ef4c7a5bf7c7a7163ca60370460a6e23", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1292.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/05/msg00019.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VX4KWHPMKYJL6ZLW4M5IU7E5UV5ZWJQU/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNU5M7BXMML26G3GPYKFGQYPQDRSNKDD/", + }, + { + "type": "URL", + "value": "https://mta.openssl.org/pipermail/openssl-announce/2022-May/000224.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0011", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220602-0009/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5402-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5402-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5139", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220503.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u3", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2068", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2068", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c9c35870601b4a44d86ddbf512b38df38285cfa", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7a9c027159fe9e1bbc2cd38a8a2914bff0d5abd9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9639817dac8bbbaa64d09efad7464ccc405527c7", + "https://linux.oracle.com/cve/CVE-2022-2068.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6WZZBKUHQFGSKGNXXKICSRPL7AMVW5M5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2068", + "https://security.netapp.com/advisory/ntap-20220707-0008/", + "https://ubuntu.com/security/notices/USN-5488-1", + "https://ubuntu.com/security/notices/USN-5488-2", + "https://www.cve.org/CVERecord?id=CVE-2022-2068", + "https://www.debian.org/security/2022/dsa-5169", + "https://www.openssl.org/news/secadv/20220621.txt", + ], + }, + "category": "Vulnerability", + "description": "In addition to the c_rehash shell command injection identified in CVE-2022-1292, further circumstances where the c_rehash script does not properly sanitise shell metacharacters to prevent command injection were found by code review. When the CVE-2022-1292 was fixed it was not discovered that there are other places in the script where the file names of certificates being hashed were possibly passed to a command executed through the shell. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.4 (Affected 3.0.0,3.0.1,3.0.2,3.0.3). Fixed in OpenSSL 1.1.1p (Affected 1.1.1-1.1.1o). Fixed in OpenSSL 1.0.2zf (Affected 1.0.2-1.0.2ze).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "the c_rehash script allows command injection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2068", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c9c35870601b4a44d86ddbf512b38df38285cfa", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7a9c027159fe9e1bbc2cd38a8a2914bff0d5abd9", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9639817dac8bbbaa64d09efad7464ccc405527c7", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2068.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6WZZBKUHQFGSKGNXXKICSRPL7AMVW5M5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220707-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5488-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5488-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5169", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220621.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1d-0+deb10u5", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-23840", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-23840", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23840", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "https://github.com/advisories/GHSA-qgm6-9472-pwq7", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-23840.html", + "https://linux.oracle.com/errata/ELSA-2021-9561.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23840", + "https://rustsec.org/advisories/RUSTSEC-2021-0057.html", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://ubuntu.com/security/notices/USN-4738-1", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-23840", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10", + ], + }, + "category": "Vulnerability", + "description": "Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate may overflow the output length argument in some cases where the input length is close to the maximum permissable length for an integer on the platform. In such cases the return value from the function call will be 1 (indicating success), but the output length value will be negative. This could cause applications to behave incorrectly or crash. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "openssl: integer overflow in CipherUpdate", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-23840", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-23840", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23840", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-qgm6-9472-pwq7", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-23840.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9561.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-23840", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0057.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202103-03", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210219-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4738-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5088-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-23840", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4855", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210216.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-03", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-09", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-10", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1d-0+deb10u7", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3712", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3712.json", + "https://access.redhat.com/security/cve/CVE-2021-3712", + "https://cert-portal.siemens.com/productcert/pdf/ssa-244969.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3712", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=94d23fcff9b2a7a8368dfe52214d5c2569882c11", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + "https://github.com/advisories/GHSA-q9wj-f4qw-6vfj", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-3712.html", + "https://linux.oracle.com/errata/ELSA-2022-9023.html", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00014.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", + "https://rustsec.org/advisories/RUSTSEC-2021-0098.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://ubuntu.com/security/notices/USN-5051-2", + "https://ubuntu.com/security/notices/USN-5051-3", + "https://ubuntu.com/security/notices/USN-5051-4 (regression only in trusty/esm)", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3712", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02", + ], + }, + "category": "Vulnerability", + "description": "ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own "d2i" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the "data" and "length" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though this is not guaranteed for strings that have been directly constructed. Where an application requests an ASN.1 structure to be printed, and where that ASN.1 structure contains ASN1_STRINGs that have been directly constructed by the application without NUL terminating the "data" field, then a read buffer overrun can occur. The same thing can also occur during name constraints processing of certificates (for example if a certificate has been directly constructed by the application instead of loading it via the OpenSSL parsing functions, and the certificate contains non NUL terminated ASN1_STRING structures). It can also occur in the X509_get1_email(), X509_REQ_get1_email() and X509_get1_ocsp() functions. If a malicious actor can cause an application to directly construct an ASN1_STRING and then process it through one of the affected OpenSSL functions then this issue could be hit. This might result in a crash (causing a Denial of Service attack). It could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext). Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k). Fixed in OpenSSL 1.0.2za (Affected 1.0.2-1.0.2y).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "openssl: Read buffer overruns processing ASN.1 strings", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3712", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/26/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3712.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-244969.pdf", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=94d23fcff9b2a7a8368dfe52214d5c2569882c11", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-q9wj-f4qw-6vfj", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3712.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9023.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0098.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-02", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210827-0010/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-4 (regression only in trusty/esm)", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5088-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4963", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210824.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-16", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-02", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1d-0+deb10u8", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0778", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "http://packetstormsecurity.com/files/167344/OpenSSL-1.0.2-1.1.1-3.0-BN_mod_sqrt-Infinite-Loop.html", + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "https://access.redhat.com/errata/RHSA-2022:5326", + "https://access.redhat.com/security/cve/CVE-2022-0778", + "https://bugzilla.redhat.com/2062202", + "https://bugzilla.redhat.com/show_bug.cgi?id=2062202", + "https://cert-portal.siemens.com/productcert/pdf/ssa-712929.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0778", + "https://errata.almalinux.org/8/ALSA-2022-5326.html", + "https://errata.rockylinux.org/RLSA-2022:4899", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3118eb64934499d93db3230748a452351d1d9a65", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=380085481c64de749a6dd25cdf0bcf4360b30f83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a466912611aa6cbdf550cd10601390e587451246", + "https://github.com/advisories/GHSA-x3mh-jvjw-3xwx", + "https://linux.oracle.com/cve/CVE-2022-0778.html", + "https://linux.oracle.com/errata/ELSA-2022-9272.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00024.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/323SNN6ZX7PRJJWP2BUAFLPUAE42XWLZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GDB3GQVJPXJE7X5C5JN6JAA4XUDWD6E6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W6K3PR542DXWLEFFMFIDMME4CWMHJRMG/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0002", + "https://rustsec.org/advisories/RUSTSEC-2022-0014.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220321-0002/", + "https://security.netapp.com/advisory/ntap-20220429-0005/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5328-1", + "https://ubuntu.com/security/notices/USN-5328-2", + "https://www.cve.org/CVERecord?id=CVE-2022-0778", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220315.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.tenable.com/security/tns-2022-06", + "https://www.tenable.com/security/tns-2022-07", + "https://www.tenable.com/security/tns-2022-08", + "https://www.tenable.com/security/tns-2022-09", + ], + }, + "category": "Vulnerability", + "description": "The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "openssl: Infinite loop in BN_mod_sqrt() reachable when parsing certificates", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0778", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/167344/OpenSSL-1.0.2-1.1.1-3.0-BN_mod_sqrt-Infinite-Loop.html", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/33", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/35", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/38", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:5326", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2062202", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2062202", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-712929.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2022-5326.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:4899", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3118eb64934499d93db3230748a452351d1d9a65", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=380085481c64de749a6dd25cdf0bcf4360b30f83", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a466912611aa6cbdf550cd10601390e587451246", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-x3mh-jvjw-3xwx", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-0778.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9272.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/03/msg00024.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/323SNN6ZX7PRJJWP2BUAFLPUAE42XWLZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GDB3GQVJPXJE7X5C5JN6JAA4XUDWD6E6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W6K3PR542DXWLEFFMFIDMME4CWMHJRMG/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0002", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2022-0014.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220321-0002/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220429-0005/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213255", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213256", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213257", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5328-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5328-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5103", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220315.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-06", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-07", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-08", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-09", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u4", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4450", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (e.g. "CERTIFICATE"), any header data and the payload data. If the function succeeds then the "name_out", "header" and "data" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "double free after calling PEM_read_bio_ex", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4450", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4450.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u4", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0215", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The public API function BIO_new_NDEF is a helper function used for streaming +ASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the +SMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by +end user applications. + +The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter +BIO onto the front of it to form a BIO chain, and then returns the new head of +the BIO chain to the caller. Under certain conditions, for example if a CMS +recipient public key is invalid, the new filter BIO is freed and the function +returns a NULL result indicating a failure. However, in this case, the BIO chain +is not properly cleaned up and the BIO passed by the caller still retains +internal pointers to the previously freed filter BIO. If the caller then goes on +to call BIO_pop() on the BIO then a use-after-free will occur. This will most +likely result in a crash. + + + +This scenario occurs directly in the internal function B64_write_ASN1() which +may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on +the BIO. This internal function is in turn called by the public API functions +PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, +SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. + +Other public API functions that may be impacted by this include +i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and +i2d_PKCS7_bio_stream. + +The OpenSSL cms and smime command line applications are similarly affected. + + + +", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "use-after-free following BIO_new_NDEF", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0215", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0215.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0007/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u4", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0286", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "X.400 address type confusion in X.509 GeneralName", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0286.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u5", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0464", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://linux.oracle.com/cve/CVE-2023-0464.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt", + ], + }, + "category": "Vulnerability", + "description": "A security vulnerability has been identified in all supported versions + +of OpenSSL related to the verification of X.509 certificate chains +that include policy constraints. Attackers may be able to exploit this +vulnerability by creating a malicious certificate chain that triggers +exponential use of computational resources, leading to a denial-of-service +(DoS) attack on affected systems. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0464", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0464.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230322.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u5", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-2650", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://linux.oracle.com/cve/CVE-2023-2650.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://ubuntu.com/security/notices/USN-6188-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-2650.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6188-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1d-0+deb10u5", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1551", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00030.html", + "http://packetstormsecurity.com/files/155754/Slackware-Security-Advisory-openssl-Updates.html", + "https://access.redhat.com/security/cve/CVE-2019-1551", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1551", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=419102400a2811582a7a3d4a4e317d72e5ce0a8f", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=f1c5eea8a817075d31e43f5876993c6710238c98", + "https://github.com/openssl/openssl/pull/10575", + "https://linux.oracle.com/cve/CVE-2019-1551.html", + "https://linux.oracle.com/errata/ELSA-2020-4514.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DDHOAATPWJCXRNFMJ2SASDBBNU5RJONY/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EXDDAOWSAIEFQNBHWYE6PPYFV4QXGMCD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XVEP3LAK4JSPRXFO4QF4GG2IVXADV3SO/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1551", + "https://seclists.org/bugtraq/2019/Dec/39", + "https://seclists.org/bugtraq/2019/Dec/46", + "https://security.gentoo.org/glsa/202004-10", + "https://security.netapp.com/advisory/ntap-20191210-0001/", + "https://ubuntu.com/security/notices/USN-4376-1", + "https://ubuntu.com/security/notices/USN-4504-1", + "https://usn.ubuntu.com/4376-1/", + "https://usn.ubuntu.com/4504-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-1551", + "https://www.debian.org/security/2019/dsa-4594", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20191206.txt", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpujan2021.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.tenable.com/security/tns-2019-09", + "https://www.tenable.com/security/tns-2020-03", + "https://www.tenable.com/security/tns-2020-11", + "https://www.tenable.com/security/tns-2021-10", + ], + }, + "category": "Vulnerability", + "description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1551", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00030.html", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/155754/Slackware-Security-Advisory-openssl-Updates.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1551", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1551", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=419102400a2811582a7a3d4a4e317d72e5ce0a8f", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=f1c5eea8a817075d31e43f5876993c6710238c98", + }, + { + "type": "URL", + "value": "https://github.com/openssl/openssl/pull/10575", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-1551.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4514.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DDHOAATPWJCXRNFMJ2SASDBBNU5RJONY/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EXDDAOWSAIEFQNBHWYE6PPYFV4QXGMCD/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XVEP3LAK4JSPRXFO4QF4GG2IVXADV3SO/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1551", + }, + { + "type": "URL", + "value": "https://seclists.org/bugtraq/2019/Dec/39", + }, + { + "type": "URL", + "value": "https://seclists.org/bugtraq/2019/Dec/46", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202004-10", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20191210-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4376-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4504-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4376-1/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4504-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1551", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2019/dsa-4594", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4855", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20191206.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2020.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2019-09", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2020-03", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2020-11", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-10", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1d-0+deb10u5", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-23841", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "http://seclists.org/fulldisclosure/2021/May/67", + "http://seclists.org/fulldisclosure/2021/May/68", + "http://seclists.org/fulldisclosure/2021/May/70", + "https://access.redhat.com/security/cve/CVE-2021-23841", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23841", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "https://github.com/advisories/GHSA-84rm-qf37-fgc2", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://linux.oracle.com/cve/CVE-2021-23841.html", + "https://linux.oracle.com/errata/ELSA-2021-9561.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23841", + "https://rustsec.org/advisories/RUSTSEC-2021-0058", + "https://rustsec.org/advisories/RUSTSEC-2021-0058.html", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://support.apple.com/kb/HT212528", + "https://support.apple.com/kb/HT212529", + "https://support.apple.com/kb/HT212534", + "https://ubuntu.com/security/notices/USN-4738-1", + "https://ubuntu.com/security/notices/USN-4745-1", + "https://www.cve.org/CVERecord?id=CVE-2021-23841", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09", + ], + }, + "category": "Vulnerability", + "description": "The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "openssl: NULL pointer dereference in X509_issuer_and_serial_hash()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-23841", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/May/67", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/May/68", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/May/70", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-23841", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23841", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-84rm-qf37-fgc2", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-23841.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9561.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-23841", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0058", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0058.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202103-03", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210219-0009/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210513-0002/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212528", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212529", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212534", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4738-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4745-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-23841", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4855", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210216.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-03", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-09", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1d-0+deb10u6", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3449", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/03/27/1", + "http://www.openwall.com/lists/oss-security/2021/03/27/2", + "http://www.openwall.com/lists/oss-security/2021/03/28/3", + "http://www.openwall.com/lists/oss-security/2021/03/28/4", + "https://access.redhat.com/security/cve/CVE-2021-3449", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-772220.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3449", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fb9fa6b51defd48157eeb207f52181f735d96148", + "https://github.com/advisories/GHSA-83mx-573x-5rw9", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10356", + "https://linux.oracle.com/cve/CVE-2021-3449.html", + "https://linux.oracle.com/errata/ELSA-2021-9151.html", + "https://lists.debian.org/debian-lts-announce/2021/08/msg00029.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3449", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + "https://rustsec.org/advisories/RUSTSEC-2021-0055", + "https://rustsec.org/advisories/RUSTSEC-2021-0055.html", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210326-0006/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + "https://ubuntu.com/security/notices/USN-4891-1", + "https://ubuntu.com/security/notices/USN-5038-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3449", + "https://www.debian.org/security/2021/dsa-4875", + "https://www.openssl.org/news/secadv/20210325.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-05", + "https://www.tenable.com/security/tns-2021-06", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10", + ], + }, + "category": "Vulnerability", + "description": "An OpenSSL TLS server may crash if sent a maliciously crafted renegotiation ClientHello message from a client. If a TLSv1.2 renegotiation ClientHello omits the signature_algorithms extension (where it was present in the initial ClientHello), but includes a signature_algorithms_cert extension then a NULL pointer dereference will result, leading to a crash and a denial of service attack. A server is only vulnerable if it has TLSv1.2 and renegotiation enabled (which is the default configuration). OpenSSL TLS clients are not impacted by this issue. All OpenSSL 1.1.1 versions are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1-1.1.1j).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "openssl: NULL pointer dereference in signature_algorithms processing", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3449", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/27/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/27/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/28/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/03/28/4", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3449", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-772220.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3449", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fb9fa6b51defd48157eeb207f52181f735d96148", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-83mx-573x-5rw9", + }, + { + "type": "URL", + "value": "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10356", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3449.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9151.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/08/msg00029.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3449", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0055", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0055.html", + }, + { + "type": "URL", + "value": "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202103-03", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210326-0006/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210513-0002/", + }, + { + "type": "URL", + "value": "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4891-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3449", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4875", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210325.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuApr2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-05", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-06", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-09", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-10", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1d-0+deb10u8", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-4160", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-4160", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3bf7b73ea7123045b8f972badc67ed6878e6c37f", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6fc1aaaf303185aa5e483e06bdfae16daa9193a7", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e9e726506cd2a3fd9c0f12daf8cc1fe934c7dddb", + "https://nvd.nist.gov/vuln/detail/CVE-2021-4160", + "https://security.gentoo.org/glsa/202210-02", + "https://www.cve.org/CVERecord?id=CVE-2021-4160", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220128.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "There is a carry propagation bug in the MIPS32 and MIPS64 squaring procedure. Many EC algorithms are affected, including some of the TLS 1.3 default curves. Impact was not analyzed in detail, because the pre-requisites for attack are considered unlikely and include reusing private keys. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be significant. However, for an attack on TLS to be meaningful, the server would have to share the DH private key among multiple clients, which is no longer an option since CVE-2016-0701. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0.0. It was addressed in the releases of 1.1.1m and 3.0.1 on the 15th of December 2021. For the 1.0.2 release it is addressed in git commit 6fc1aaaf3 that is available to premium support customers only. It will be made available in 1.0.2zc when it is released. The issue only affects OpenSSL on MIPS platforms. Fixed in OpenSSL 3.0.1 (Affected 3.0.0). Fixed in OpenSSL 1.1.1m (Affected 1.1.1-1.1.1l). Fixed in OpenSSL 1.0.2zc-dev (Affected 1.0.2-1.0.2zb).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "openssl: Carry propagation bug in the MIPS32 and MIPS64 squaring procedure", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-4160", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-4160", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3bf7b73ea7123045b8f972badc67ed6878e6c37f", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6fc1aaaf303185aa5e483e06bdfae16daa9193a7", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e9e726506cd2a3fd9c0f12daf8cc1fe934c7dddb", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-4160", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-4160", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5103", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220128.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u4", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2097", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt", + ], + }, + "category": "Vulnerability", + "description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "AES OCB fails to encrypt some bytes", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2097", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2097.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220715-0011/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230420-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5502-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5343", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220705.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u4", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4304", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "timing attack in RSA Decryption implementation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4304", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4304.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u5", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0465", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://linux.oracle.com/cve/CVE-2023-0465.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "Applications that use a non-default option when verifying certificates may be +vulnerable to an attack from a malicious CA to circumvent certain checks. + +Invalid certificate policies in leaf certificates are silently ignored by +OpenSSL and other certificate policy checks are skipped for that certificate. +A malicious CA could use this to deliberately assert invalid certificate policies +in order to circumvent policy checking on the certificate altogether. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Invalid certificate policies in leaf certificates are silently ignored", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0465", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0465.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u5", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0466", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://linux.oracle.com/cve/CVE-2023-0466.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "The function X509_VERIFY_PARAM_add0_policy() is documented to +implicitly enable the certificate policy check when doing certificate +verification. However the implementation of the function does not +enable the check which allows certificates with invalid or incorrect +policies to pass the certificate verification. + +As suddenly enabling the policy check could break existing deployments it was +decided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy() +function. + +Instead the applications that require OpenSSL to perform certificate +policy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly +enable the policy check by calling X509_VERIFY_PARAM_set_flags() with +the X509_V_FLAG_POLICY_CHECK flag argument. + +Certificate policy checks are disabled by default in OpenSSL and are not +commonly used by applications.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Certificate policy check not enabled", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0466", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0466.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-6755", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + ], + }, + "category": "Vulnerability", + "description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain "skeleton key" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Dual_EC_DRBG: weak pseudo random number generator", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-6755", + }, + { + "type": "URL", + "value": "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + }, + { + "type": "URL", + "value": "http://rump2007.cr.yp.to/15-shumow.pdf", + }, + { + "type": "URL", + "value": "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + }, + { + "type": "URL", + "value": "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/63657", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-0928", + "installedVersion": "1.1.1d-0+deb10u4", + "packageName": "libssl1.1", + "references": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928", + ], + }, + "category": "Vulnerability", + "description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a "fault-based attack."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "openssl: RSA authentication weakness", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-0928", + }, + { + "type": "URL", + "value": "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + }, + { + "type": "URL", + "value": "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + }, + { + "type": "URL", + "value": "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + }, + { + "type": "URL", + "value": "http://www.osvdb.org/62808", + }, + { + "type": "URL", + "value": "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-0928", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-12886", + "installedVersion": "8.3.0-6", + "packageName": "libstdc++6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-12886", + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379&view=markup", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "https://www.cve.org/CVERecord?id=CVE-2018-12886", + "https://www.gnu.org/software/gcc/gcc-8/changes.html", + ], + }, + "category": "Vulnerability", + "description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-12886", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379&view=markup", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://www.gnu.org/software/gcc/gcc-8/changes.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-15847", + "installedVersion": "8.3.0-6", + "packageName": "libstdc++6", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + "https://access.redhat.com/security/cve/CVE-2019-15847", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + "https://linux.oracle.com/cve/CVE-2019-15847.html", + "https://linux.oracle.com/errata/ELSA-2020-1864.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + "https://www.cve.org/CVERecord?id=CVE-2019-15847", + ], + }, + "category": "Vulnerability", + "description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "gcc: POWER9 "DARN" RNG intrinsic produces repeated output", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-15847", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-15847", + }, + { + "type": "URL", + "value": "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-15847.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1864.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-15847", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-3843", + "installedVersion": "241-7~deb10u5", + "packageName": "libsystemd0", + "references": [ + "http://www.securityfocus.com/bid/108116", + "https://access.redhat.com/security/cve/CVE-2019-3843", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3843", + "https://github.com/systemd/systemd-stable/pull/54 (backport for v241-stable)", + "https://linux.oracle.com/cve/CVE-2019-3843.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3843", + ], + }, + "category": "Vulnerability", + "description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: services with DynamicUser can create SUID/SGID binaries", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-3843", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/108116", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/pull/54 (backport for v241-stable)", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-3843.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1794.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190619-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4269-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4269-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-3843", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-3844", + "installedVersion": "241-7~deb10u5", + "packageName": "libsystemd0", + "references": [ + "http://www.securityfocus.com/bid/108096", + "https://access.redhat.com/security/cve/CVE-2019-3844", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3844", + "https://linux.oracle.com/cve/CVE-2019-3844.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3844", + ], + }, + "category": "Vulnerability", + "description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: services with DynamicUser can get new privileges and create SGID binaries", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-3844", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/108096", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-3844.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1794.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190619-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4269-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4269-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-3844", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "241-7~deb10u9", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-26604", + "installedVersion": "241-7~deb10u5", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-26604", + "https://blog.compass-security.com/2012/10/dangerous-sudoers-entries-part-2-insecure-functionality/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26604", + "https://github.com/systemd/systemd/blob/main/NEWS#L4335-L4340", + "https://github.com/systemd/systemd/issues/5666", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00032.html", + "https://medium.com/@zenmoviefornotification/saidov-maxim-cve-2023-26604-c1232a526ba7", + "https://nvd.nist.gov/vuln/detail/CVE-2023-26604", + "https://security.netapp.com/advisory/ntap-20230505-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-26604", + ], + }, + "category": "Vulnerability", + "description": "systemd before 247 does not adequately block local privilege escalation for some Sudo configurations, e.g., plausible sudoers files in which the "systemctl status" command may be executed. Specifically, systemd does not set LESSSECURE to 1, and thus other programs may be launched from the less program. This presents a substantial security risk when running systemctl from Sudo, because less executes as root when the terminal size is too small to show the complete systemctl output.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "privilege escalation via the less pager", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-26604", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-26604", + }, + { + "type": "URL", + "value": "https://blog.compass-security.com/2012/10/dangerous-sudoers-entries-part-2-insecure-functionality/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26604", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/blob/main/NEWS#L4335-L4340", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/5666", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00032.html", + }, + { + "type": "URL", + "value": "https://medium.com/@zenmoviefornotification/saidov-maxim-cve-2023-26604-c1232a526ba7", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-26604", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230505-0009/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-26604", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "241-7~deb10u8", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-33910", + "installedVersion": "241-7~deb10u5", + "packageName": "libsystemd0", + "references": [ + "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33910.json", + "https://access.redhat.com/security/cve/CVE-2021-33910", + "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33910", + "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + "https://linux.oracle.com/cve/CVE-2021-33910.html", + "https://linux.oracle.com/errata/ELSA-2021-2717.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20211104-0008/", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33910", + "https://www.debian.org/security/2021/dsa-4942", + "https://www.openwall.com/lists/oss-security/2021/07/20/2", + "https://www.qualys.com/2021/07/20/cve-2021-33910/denial-of-service-systemd.txt", + ], + }, + "category": "Vulnerability", + "description": "basic/unit-name.c in systemd prior to 246.15, 247.8, 248.5, and 249.1 has a Memory Allocation with an Excessive Size Value (involving strdupa and alloca for a pathname controlled by a local attacker) that results in an operating system crash.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: uncontrolled allocation on the stack in function unit_name_path_escape leads to crash", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33910", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33910.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-33910.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-2717.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211104-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4942", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2021/07/20/2", + }, + { + "type": "URL", + "value": "https://www.qualys.com/2021/07/20/cve-2021-33910/denial-of-service-systemd.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3997", + "installedVersion": "241-7~deb10u5", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-3997", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3997", + "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5226-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3997", + "https://www.openwall.com/lists/oss-security/2022/01/10/2", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in systemd. An uncontrolled recursion in systemd-tmpfiles may lead to a denial of service at boot time when too many nested directories are created in /tmp.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: Uncontrolled recursion in systemd-tmpfiles when removing files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3997", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5226-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/01/10/2", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3821", + "installedVersion": "241-7~deb10u5", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821", + ], + }, + "category": "Vulnerability", + "description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "buffer overrun in format_timespan() function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3821", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0336", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2139327", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0336", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/23928", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/23933", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3821.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3821", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4415", + "installedVersion": "241-7~deb10u5", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4415", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0954", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2155515", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0954", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4415.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/12/21/3", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4392", + "installedVersion": "241-7~deb10u5", + "packageName": "libsystemd0", + "references": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392", + ], + }, + "category": "Vulnerability", + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4392", + }, + { + "type": "URL", + "value": "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2013/10/01/9", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4392", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-20386", + "installedVersion": "241-7~deb10u5", + "packageName": "libsystemd0", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + "https://access.redhat.com/security/cve/CVE-2019-20386", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20386", + "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + "https://linux.oracle.com/cve/CVE-2019-20386.html", + "https://linux.oracle.com/errata/ELSA-2020-4553.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + "https://security.netapp.com/advisory/ntap-20200210-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-20386", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: memory leak in button_open() in login/logind-button.c when udev events are received", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-20386", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-20386", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20386", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-20386.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4553.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200210-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4269-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4269-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-20386", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-13529", + "installedVersion": "241-7~deb10u5", + "packageName": "libsystemd0", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529", + ], + }, + "category": "Vulnerability", + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-13529", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-13529.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4361.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210625-0005/", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-13529", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31437", + "installedVersion": "241-7~deb10u5", + "packageName": "libsystemd0", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify a sealed log file such that, in some views, not all existing and sealed log messages are displayed. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can modify a seale ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31437", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31438", + "installedVersion": "241-7~deb10u5", + "packageName": "libsystemd0", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can truncate a sealed log file and then resume log sealing such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can truncate a sea ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31438", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31439", + "installedVersion": "241-7~deb10u5", + "packageName": "libsystemd0", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify the contents of past events in a sealed log file and then adjust the file such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can modify the con ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31439", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "4.13-3+deb10u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-46848", + "installedVersion": "4.13-3", + "packageName": "libtasn1-6", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0343", + "https://access.redhat.com/security/cve/CVE-2021-46848", + "https://bugs.gentoo.org/866237", + "https://bugzilla.redhat.com/2140058", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + "https://errata.almalinux.org/9/ALSA-2023-0343.html", + "https://errata.rockylinux.org/RLSA-2023:0343", + "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + "https://gitlab.com/gnutls/libtasn1/-/issues/32", + "https://linux.oracle.com/cve/CVE-2021-46848.html", + "https://linux.oracle.com/errata/ELSA-2023-0343.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + "https://security.netapp.com/advisory/ntap-20221118-0006/", + "https://ubuntu.com/security/notices/USN-5707-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46848", + ], + }, + "category": "Vulnerability", + "description": "GNU Libtasn1 before 4.19.0 has an ETYPE_OK off-by-one array size check that affects asn1_encode_simple_der.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libtasn1: Out-of-bound access in ETYPE_OK", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-46848", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0343", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/866237", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140058", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0343.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0343", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/-/issues/32", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-46848.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0343.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221118-0006/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5707-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-46848", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-1000654", + "installedVersion": "4.13-3", + "packageName": "libtasn1-6", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00018.html", + "http://www.securityfocus.com/bid/105151", + "https://access.redhat.com/security/cve/CVE-2018-1000654", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1000654", + "https://gitlab.com/gnutls/libtasn1/issues/4", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-1000654", + "https://ubuntu.com/security/notices/USN-5352-1", + "https://www.cve.org/CVERecord?id=CVE-2018-1000654", + ], + }, + "category": "Vulnerability", + "description": "GNU Libtasn1-4.13 libtasn1-4.13 version libtasn1-4.13, libtasn1-4.12 contains a DoS, specifically CPU usage will reach 100% when running asn1Paser against the POC due to an issue in _asn1_expand_object_id(p_tree), after a long time, the program will be killed. This attack appears to be exploitable via parsing a crafted file.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "libtasn1: Infinite loop in _asn1_expand_object_id(ptree) leads to memory exhaustion", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-1000654", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00009.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00018.html", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/105151", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-1000654", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1000654", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/issues/4", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-1000654", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5352-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-1000654", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-3843", + "installedVersion": "241-7~deb10u5", + "packageName": "libudev1", + "references": [ + "http://www.securityfocus.com/bid/108116", + "https://access.redhat.com/security/cve/CVE-2019-3843", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3843", + "https://github.com/systemd/systemd-stable/pull/54 (backport for v241-stable)", + "https://linux.oracle.com/cve/CVE-2019-3843.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3843", + ], + }, + "category": "Vulnerability", + "description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: services with DynamicUser can create SUID/SGID binaries", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-3843", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/108116", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/pull/54 (backport for v241-stable)", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-3843.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1794.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190619-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4269-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4269-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-3843", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-3844", + "installedVersion": "241-7~deb10u5", + "packageName": "libudev1", + "references": [ + "http://www.securityfocus.com/bid/108096", + "https://access.redhat.com/security/cve/CVE-2019-3844", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3844", + "https://linux.oracle.com/cve/CVE-2019-3844.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3844", + ], + }, + "category": "Vulnerability", + "description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: services with DynamicUser can get new privileges and create SGID binaries", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-3844", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/108096", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-3844.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1794.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190619-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4269-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4269-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-3844", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "241-7~deb10u9", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-26604", + "installedVersion": "241-7~deb10u5", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-26604", + "https://blog.compass-security.com/2012/10/dangerous-sudoers-entries-part-2-insecure-functionality/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26604", + "https://github.com/systemd/systemd/blob/main/NEWS#L4335-L4340", + "https://github.com/systemd/systemd/issues/5666", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00032.html", + "https://medium.com/@zenmoviefornotification/saidov-maxim-cve-2023-26604-c1232a526ba7", + "https://nvd.nist.gov/vuln/detail/CVE-2023-26604", + "https://security.netapp.com/advisory/ntap-20230505-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-26604", + ], + }, + "category": "Vulnerability", + "description": "systemd before 247 does not adequately block local privilege escalation for some Sudo configurations, e.g., plausible sudoers files in which the "systemctl status" command may be executed. Specifically, systemd does not set LESSSECURE to 1, and thus other programs may be launched from the less program. This presents a substantial security risk when running systemctl from Sudo, because less executes as root when the terminal size is too small to show the complete systemctl output.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "privilege escalation via the less pager", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-26604", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-26604", + }, + { + "type": "URL", + "value": "https://blog.compass-security.com/2012/10/dangerous-sudoers-entries-part-2-insecure-functionality/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26604", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/blob/main/NEWS#L4335-L4340", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/5666", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00032.html", + }, + { + "type": "URL", + "value": "https://medium.com/@zenmoviefornotification/saidov-maxim-cve-2023-26604-c1232a526ba7", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-26604", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230505-0009/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-26604", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "241-7~deb10u8", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-33910", + "installedVersion": "241-7~deb10u5", + "packageName": "libudev1", + "references": [ + "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33910.json", + "https://access.redhat.com/security/cve/CVE-2021-33910", + "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33910", + "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + "https://linux.oracle.com/cve/CVE-2021-33910.html", + "https://linux.oracle.com/errata/ELSA-2021-2717.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20211104-0008/", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33910", + "https://www.debian.org/security/2021/dsa-4942", + "https://www.openwall.com/lists/oss-security/2021/07/20/2", + "https://www.qualys.com/2021/07/20/cve-2021-33910/denial-of-service-systemd.txt", + ], + }, + "category": "Vulnerability", + "description": "basic/unit-name.c in systemd prior to 246.15, 247.8, 248.5, and 249.1 has a Memory Allocation with an Excessive Size Value (involving strdupa and alloca for a pathname controlled by a local attacker) that results in an operating system crash.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: uncontrolled allocation on the stack in function unit_name_path_escape leads to crash", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33910", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33910.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-33910.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-2717.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211104-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4942", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2021/07/20/2", + }, + { + "type": "URL", + "value": "https://www.qualys.com/2021/07/20/cve-2021-33910/denial-of-service-systemd.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3997", + "installedVersion": "241-7~deb10u5", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-3997", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3997", + "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5226-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3997", + "https://www.openwall.com/lists/oss-security/2022/01/10/2", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in systemd. An uncontrolled recursion in systemd-tmpfiles may lead to a denial of service at boot time when too many nested directories are created in /tmp.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: Uncontrolled recursion in systemd-tmpfiles when removing files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3997", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5226-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/01/10/2", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3821", + "installedVersion": "241-7~deb10u5", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821", + ], + }, + "category": "Vulnerability", + "description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "buffer overrun in format_timespan() function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3821", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0336", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2139327", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0336", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/23928", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/23933", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3821.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3821", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4415", + "installedVersion": "241-7~deb10u5", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4415", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0954", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2155515", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0954", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4415.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/12/21/3", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4392", + "installedVersion": "241-7~deb10u5", + "packageName": "libudev1", + "references": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392", + ], + }, + "category": "Vulnerability", + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4392", + }, + { + "type": "URL", + "value": "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2013/10/01/9", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4392", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-20386", + "installedVersion": "241-7~deb10u5", + "packageName": "libudev1", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + "https://access.redhat.com/security/cve/CVE-2019-20386", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20386", + "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + "https://linux.oracle.com/cve/CVE-2019-20386.html", + "https://linux.oracle.com/errata/ELSA-2020-4553.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + "https://security.netapp.com/advisory/ntap-20200210-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-20386", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: memory leak in button_open() in login/logind-button.c when udev events are received", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-20386", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-20386", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20386", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-20386.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4553.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200210-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4269-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4269-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-20386", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-13529", + "installedVersion": "241-7~deb10u5", + "packageName": "libudev1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529", + ], + }, + "category": "Vulnerability", + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-13529", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-13529.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4361.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210625-0005/", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-13529", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31437", + "installedVersion": "241-7~deb10u5", + "packageName": "libudev1", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify a sealed log file such that, in some views, not all existing and sealed log messages are displayed. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can modify a seale ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31437", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31438", + "installedVersion": "241-7~deb10u5", + "packageName": "libudev1", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can truncate a sealed log file and then resume log sealing such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can truncate a sea ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31438", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31439", + "installedVersion": "241-7~deb10u5", + "packageName": "libudev1", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify the contents of past events in a sealed log file and then adjust the file such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can modify the con ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31439", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "libxtables12", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-11360", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "libxtables12", + "references": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360", + ], + }, + "category": "Vulnerability", + "description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "iptables: buffer overflow in iptables-restore", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-11360", + }, + { + "type": "URL", + "value": "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-11360", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.3.8+dfsg-3+deb10u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-24031", + "installedVersion": "1.3.8+dfsg-3", + "packageName": "libzstd1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-24031", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=981404", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-24031", + "https://github.com/facebook/zstd/issues/1630", + "https://nvd.nist.gov/vuln/detail/CVE-2021-24031", + "https://ubuntu.com/security/notices/USN-4760-1", + "https://ubuntu.com/security/notices/USN-5720-1", + "https://www.cve.org/CVERecord?id=CVE-2021-24031", + "https://www.facebook.com/security/advisories/cve-2021-24031", + ], + }, + "category": "Vulnerability", + "description": "In the Zstandard command-line utility prior to v1.4.1, output files were created with default permissions. Correct file permissions (matching the input) would only be set at completion time. Output files could therefore be readable or writable to unintended parties.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "zstd: adds read permissions to files while being compressed or uncompressed", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-24031", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-24031", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=981404", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-24031", + }, + { + "type": "URL", + "value": "https://github.com/facebook/zstd/issues/1630", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-24031", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4760-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5720-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-24031", + }, + { + "type": "URL", + "value": "https://www.facebook.com/security/advisories/cve-2021-24031", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.3.8+dfsg-3+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-24032", + "installedVersion": "1.3.8+dfsg-3", + "packageName": "libzstd1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-24032", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=982519", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-24032", + "https://github.com/facebook/zstd/issues/2491", + "https://nvd.nist.gov/vuln/detail/CVE-2021-24032", + "https://ubuntu.com/security/notices/USN-4760-1", + "https://ubuntu.com/security/notices/USN-5720-1", + "https://www.cve.org/CVERecord?id=CVE-2021-24032", + "https://www.facebook.com/security/advisories/cve-2021-24032", + ], + }, + "category": "Vulnerability", + "description": "Beginning in v1.4.1 and prior to v1.4.9, due to an incomplete fix for CVE-2021-24031, the Zstandard command-line utility created output files with default permissions and restricted those permissions immediately afterwards. Output files could therefore momentarily be readable or writable to unintended parties.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "zstd: Race condition allows attacker to access world-readable destination file", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-24032", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-24032", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=982519", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-24032", + }, + { + "type": "URL", + "value": "https://github.com/facebook/zstd/issues/2491", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-24032", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4760-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5720-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-24032", + }, + { + "type": "URL", + "value": "https://www.facebook.com/security/advisories/cve-2021-24032", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-5686", + "installedVersion": "1:4.5-1.1", + "packageName": "login", + "references": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825", + ], + }, + "category": "Vulnerability", + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-5686", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/27215", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/26048", + }, + { + "type": "URL", + "value": "http://www.vupen.com/english/advisories/2007/3474", + }, + { + "type": "URL", + "value": "https://issues.rpath.com/browse/RPL-1825", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4235", + "installedVersion": "1:4.5-1.1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235", + ], + }, + "category": "Vulnerability", + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/issues/317", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/545", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-26", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4235", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-7169", + "installedVersion": "1:4.5-1.1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-7169", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7169", + "https://github.com/shadow-maint/shadow/pull/97", + "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + "https://security.gentoo.org/glsa/201805-09", + "https://ubuntu.com/security/notices/USN-5254-1", + "https://www.cve.org/CVERecord?id=CVE-2018-7169", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used "group blacklisting" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-7169", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-7169", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7169", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/97", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201805-09", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5254-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-7169", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19882", + "installedVersion": "1:4.5-1.1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882", + ], + }, + "category": "Vulnerability", + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19882", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://bugs.archlinux.org/task/64836", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/702252", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/199", + }, + { + "type": "URL", + "value": "https://github.com/void-linux/void-packages/pull/17580", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202008-09", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19882", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29383", + "installedVersion": "1:4.5-1.1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + ], + }, + "category": "Vulnerability", + "description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that "cat /etc/passwd" shows a rogue user account.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Improper input validation in shadow-utils package utility chfn", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/687", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-5686", + "installedVersion": "1:4.5-1.1", + "packageName": "passwd", + "references": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825", + ], + }, + "category": "Vulnerability", + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-5686", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/27215", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/26048", + }, + { + "type": "URL", + "value": "http://www.vupen.com/english/advisories/2007/3474", + }, + { + "type": "URL", + "value": "https://issues.rpath.com/browse/RPL-1825", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4235", + "installedVersion": "1:4.5-1.1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235", + ], + }, + "category": "Vulnerability", + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/issues/317", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/545", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-26", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4235", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-7169", + "installedVersion": "1:4.5-1.1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-7169", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7169", + "https://github.com/shadow-maint/shadow/pull/97", + "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + "https://security.gentoo.org/glsa/201805-09", + "https://ubuntu.com/security/notices/USN-5254-1", + "https://www.cve.org/CVERecord?id=CVE-2018-7169", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used "group blacklisting" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-7169", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-7169", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7169", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/97", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201805-09", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5254-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-7169", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19882", + "installedVersion": "1:4.5-1.1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882", + ], + }, + "category": "Vulnerability", + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19882", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://bugs.archlinux.org/task/64836", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/702252", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/199", + }, + { + "type": "URL", + "value": "https://github.com/void-linux/void-packages/pull/17580", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202008-09", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19882", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29383", + "installedVersion": "1:4.5-1.1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + ], + }, + "category": "Vulnerability", + "description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that "cat /etc/passwd" shows a rogue user account.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "Improper input validation in shadow-utils package utility chfn", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/687", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-16156", + "installedVersion": "5.28.1-6+deb10u1", + "packageName": "perl-base", + "references": [ + "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + "https://access.redhat.com/security/cve/CVE-2020-16156", + "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + "https://ubuntu.com/security/notices/USN-5689-1", + "https://ubuntu.com/security/notices/USN-5689-2", + "https://www.cve.org/CVERecord?id=CVE-2020-16156", + ], + }, + "category": "Vulnerability", + "description": "CPAN 2.28 allows Signature Verification Bypass.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "perl-CPAN: Bypass of verification of signatures in CHECKSUMS files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-16156", + }, + { + "type": "URL", + "value": "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + }, + { + "type": "URL", + "value": "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5689-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5689-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-16156", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31484", + "installedVersion": "5.28.1-6+deb10u1", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + "https://github.com/andk/cpanpm/pull/175", + "https://metacpan.org/dist/CPAN/changes", + "https://ubuntu.com/security/notices/USN-6112-1", + "https://ubuntu.com/security/notices/USN-6112-2", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + ], + }, + "category": "Vulnerability", + "description": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "CPAN.pm before 2.35 does not verify TLS certificates when downloading ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31484", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/29/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/5", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/07/2", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + }, + { + "type": "URL", + "value": "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + }, + { + "type": "URL", + "value": "https://github.com/andk/cpanpm/pull/175", + }, + { + "type": "URL", + "value": "https://metacpan.org/dist/CPAN/changes", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6112-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6112-2", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/18/14", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-4116", + "installedVersion": "5.28.1-6+deb10u1", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2011/11/04/2", + "http://www.openwall.com/lists/oss-security/2011/11/04/4", + "https://access.redhat.com/security/cve/CVE-2011-4116", + "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + "https://seclists.org/oss-sec/2011/q4/238", + "https://www.cve.org/CVERecord?id=CVE-2011-4116", + ], + }, + "category": "Vulnerability", + "description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "perl: File::Temp insecure temporary file handling", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-4116", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2011/11/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2011/11/04/4", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2011-4116", + }, + { + "type": "URL", + "value": "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + }, + { + "type": "URL", + "value": "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + }, + { + "type": "URL", + "value": "https://seclists.org/oss-sec/2011/q4/238", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2011-4116", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31486", + "installedVersion": "5.28.1-6+deb10u1", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://github.com/chansen/p5-http-tiny/pull/153", + "https://hackeriet.github.io/cpan-http-tiny-overview/", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + "https://www.openwall.com/lists/oss-security/2023/05/03/4", + "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/", + ], + }, + "category": "Vulnerability", + "description": "HTTP::Tiny before 0.083, a Perl core module since 5.13.9 and available standalone on CPAN, has an insecure default TLS configuration where users must opt in to verify certificates.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "HTTP::Tiny before 0.083, a Perl core module since 5.13.9 and available ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31486", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/29/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/5", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/07/2", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + }, + { + "type": "URL", + "value": "https://github.com/chansen/p5-http-tiny/pull/153", + }, + { + "type": "URL", + "value": "https://hackeriet.github.io/cpan-http-tiny-overview/", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/18/14", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/05/03/4", + }, + { + "type": "URL", + "value": "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2005-2541", + "installedVersion": "1.30+dfsg-6", + "packageName": "tar", + "references": [ + "http://marc.info/?l=bugtraq&m=112327628230258&w=2", + "https://access.redhat.com/security/cve/CVE-2005-2541", + "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + "https://www.cve.org/CVERecord?id=CVE-2005-2541", + ], + }, + "category": "Vulnerability", + "description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "tar: does not properly warn the user when extracting setuid or setgid files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2005-2541", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=112327628230258&w=2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2005-2541", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2005-2541", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-9923", + "installedVersion": "1.30+dfsg-6", + "packageName": "tar", + "references": [ + "http://git.savannah.gnu.org/cgit/tar.git/commit/?id=cb07844454d8cc9fb21f53ace75975f91185a120", + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00077.html", + "http://savannah.gnu.org/bugs/?55369", + "https://access.redhat.com/security/cve/CVE-2019-9923", + "https://bugs.launchpad.net/ubuntu/+source/tar/+bug/1810241", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-9923", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9923", + "https://ubuntu.com/security/notices/USN-4692-1", + "https://www.cve.org/CVERecord?id=CVE-2019-9923", + ], + }, + "category": "Vulnerability", + "description": "pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "tar: null-pointer dereference in pax_decode_header in sparse.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-9923", + }, + { + "type": "URL", + "value": "http://git.savannah.gnu.org/cgit/tar.git/commit/?id=cb07844454d8cc9fb21f53ace75975f91185a120", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00077.html", + }, + { + "type": "URL", + "value": "http://savannah.gnu.org/bugs/?55369", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-9923", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/tar/+bug/1810241", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-9923", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-9923", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4692-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-9923", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-20193", + "installedVersion": "1.30+dfsg-6", + "packageName": "tar", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-20193", + "https://bugzilla.redhat.com/show_bug.cgi?id=1917565", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20193", + "https://git.savannah.gnu.org/cgit/tar.git/commit/?id=d9d4435692150fa8ff68e1b1a473d187cc3fd777", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20193", + "https://savannah.gnu.org/bugs/?59897", + "https://security.gentoo.org/glsa/202105-29", + "https://ubuntu.com/security/notices/USN-5329-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20193", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the src/list.c of tar 1.33 and earlier. This flaw allows an attacker who can submit a crafted input file to tar to cause uncontrolled consumption of memory. The highest threat from this vulnerability is to system availability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "tar: Memory leak in read_header() in list.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-20193", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-20193", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1917565", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20193", + }, + { + "type": "URL", + "value": "https://git.savannah.gnu.org/cgit/tar.git/commit/?id=d9d4435692150fa8ff68e1b1a473d187cc3fd777", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-20193", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/bugs/?59897", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202105-29", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5329-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-20193", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-48303", + "installedVersion": "1.30+dfsg-6", + "packageName": "tar", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0959", + "https://access.redhat.com/security/cve/CVE-2022-48303", + "https://bugzilla.redhat.com/2149722", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + "https://errata.almalinux.org/9/ALSA-2023-0959.html", + "https://errata.rockylinux.org/RLSA-2023:0959", + "https://linux.oracle.com/cve/CVE-2022-48303.html", + "https://linux.oracle.com/errata/ELSA-2023-0959.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + "https://savannah.gnu.org/bugs/?62387", + "https://savannah.gnu.org/patch/?10307", + "https://ubuntu.com/security/notices/USN-5900-1", + "https://ubuntu.com/security/notices/USN-5900-2", + "https://www.cve.org/CVERecord?id=CVE-2022-48303", + ], + }, + "category": "Vulnerability", + "description": "GNU Tar through 1.34 has a one-byte out-of-bounds read that results in use of uninitialized memory for a conditional jump. Exploitation to change the flow of control has not been demonstrated. The issue occurs in from_header in list.c via a V7 archive in which mtime has approximately 11 whitespace characters.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "heap buffer overflow at from_header() in list.c via specially crafted checksum", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-48303", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0959", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149722", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0959.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0959", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-48303.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0959.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/bugs/?62387", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/patch/?10307", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5900-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5900-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-48303", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1:1.2.11.dfsg-1+deb10u2", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-37434", + "installedVersion": "1:1.2.11.dfsg-1", + "packageName": "zlib1g", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/37", + "http://seclists.org/fulldisclosure/2022/Oct/38", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/42", + "http://www.openwall.com/lists/oss-security/2022/08/05/2", + "http://www.openwall.com/lists/oss-security/2022/08/09/1", + "https://access.redhat.com/errata/RHSA-2022:8291", + "https://access.redhat.com/security/cve/CVE-2022-37434", + "https://bugzilla.redhat.com/2116639", + "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + "https://errata.almalinux.org/9/ALSA-2022-8291.html", + "https://errata.rockylinux.org/RLSA-2022:8291", + "https://github.com/curl/curl/issues/9271", + "https://github.com/ivd38/zlib_overflow", + "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + "https://linux.oracle.com/cve/CVE-2022-37434.html", + "https://linux.oracle.com/errata/ELSA-2023-1095.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + "https://security.netapp.com/advisory/ntap-20220901-0005/", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://support.apple.com/kb/HT213488", + "https://support.apple.com/kb/HT213489", + "https://support.apple.com/kb/HT213490", + "https://support.apple.com/kb/HT213491", + "https://support.apple.com/kb/HT213493", + "https://support.apple.com/kb/HT213494", + "https://ubuntu.com/security/notices/USN-5570-1", + "https://ubuntu.com/security/notices/USN-5570-2", + "https://ubuntu.com/security/notices/USN-5573-1", + "https://www.cve.org/CVERecord?id=CVE-2022-37434", + "https://www.debian.org/security/2022/dsa-5218", + ], + }, + "category": "Vulnerability", + "description": "zlib through 1.2.12 has a heap-based buffer over-read or buffer overflow in inflate in inflate.c via a large gzip header extra field. NOTE: only applications that call inflateGetHeader are affected. Some common applications bundle the affected zlib source code but may be unable to call inflateGetHeader (e.g., see the nodejs/node reference).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "heap-based buffer over-read and overflow in inflate() in inflate.c via a large gzip header extra field", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-37434", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/37", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/38", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/41", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/42", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/08/05/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/08/09/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8291", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2116639", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8291.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8291", + }, + { + "type": "URL", + "value": "https://github.com/curl/curl/issues/9271", + }, + { + "type": "URL", + "value": "https://github.com/ivd38/zlib_overflow", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + }, + { + "type": "URL", + "value": "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-37434.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-1095.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220901-0005/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0007/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213488", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213489", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213490", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213491", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213493", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213494", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5570-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5570-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5573-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5218", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1:1.2.11.dfsg-1+deb10u1", + "foundIn": "Target: 'docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-25032", + "installedVersion": "1:1.2.11.dfsg-1", + "packageName": "zlib1g", + "references": [ + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "http://www.openwall.com/lists/oss-security/2022/03/25/2", + "http://www.openwall.com/lists/oss-security/2022/03/26/1", + "https://access.redhat.com/errata/RHSA-2022:8420", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + "https://access.redhat.com/security/cve/CVE-2018-25032", + "https://bugzilla.redhat.com/2067945", + "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + "https://errata.almalinux.org/9/ALSA-2022-8420.html", + "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + "https://github.com/madler/zlib/issues/605", + "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + "https://linux.oracle.com/cve/CVE-2018-25032.html", + "https://linux.oracle.com/errata/ELSA-2022-9565.html", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + "https://security.gentoo.org/glsa/202210-42", + "https://security.netapp.com/advisory/ntap-20220526-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5355-1", + "https://ubuntu.com/security/notices/USN-5355-2", + "https://ubuntu.com/security/notices/USN-5359-1", + "https://ubuntu.com/security/notices/USN-5359-2", + "https://ubuntu.com/security/notices/USN-5739-1", + "https://www.cve.org/CVERecord?id=CVE-2018-25032", + "https://www.debian.org/security/2022/dsa-5111", + "https://www.openwall.com/lists/oss-security/2022/03/24/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/3", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "A flaw found in zlib when compressing (not decompressing) certain inputs", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-25032", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/33", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/35", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/38", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/03/25/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/03/26/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8420", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2067945", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8420.html", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/issues/605", + }, + { + "type": "URL", + "value": "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + }, + { + "type": "URL", + "value": "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2018-25032.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9565.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-42", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220526-0009/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0004/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213255", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213256", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213257", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5355-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5355-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5359-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5359-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5739-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5111", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/24/1", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/28/1", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/28/3", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.3.2", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-3121", + "installedVersion": "v1.3.1", + "packageName": "github.com/gogo/protobuf", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-3121", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3121", + "https://discuss.hashicorp.com/t/hcsec-2021-23-consul-exposed-to-denial-of-service-in-gogo-protobuf-dependency/29025", + "https://github.com/advisories/GHSA-c3h9-896r-86jm", + "https://github.com/gogo/protobuf/commit/b03c65ea87cdc3521ede29f62fe3ce239267c1bc", + "https://github.com/gogo/protobuf/compare/v1.3.1...v1.3.2", + "https://lists.apache.org/thread.html/r68032132c0399c29d6cdc7bd44918535da54060a10a12b1591328bff@%3Cnotifications.skywalking.apache.org%3E", + "https://lists.apache.org/thread.html/r88d69555cb74a129a7bf84838073b61259b4a3830190e05a3b87994e@%3Ccommits.pulsar.apache.org%3E", + "https://lists.apache.org/thread.html/rc1e9ff22c5641d73701ba56362fb867d40ed287cca000b131dcf4a44@%3Ccommits.pulsar.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3121", + "https://pkg.go.dev/vuln/GO-2021-0053", + "https://security.netapp.com/advisory/ntap-20210219-0006/", + "https://www.cve.org/CVERecord?id=CVE-2021-3121", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in GoGo Protobuf before 1.3.2. plugin/unmarshal/unmarshal.go lacks certain index validation, aka the "skippy peanut butter" issue.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "gogo/protobuf: plugin/unmarshal/unmarshal.go lacks certain index validation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3121", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3121", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3121", + }, + { + "type": "URL", + "value": "https://discuss.hashicorp.com/t/hcsec-2021-23-consul-exposed-to-denial-of-service-in-gogo-protobuf-dependency/29025", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-c3h9-896r-86jm", + }, + { + "type": "URL", + "value": "https://github.com/gogo/protobuf/commit/b03c65ea87cdc3521ede29f62fe3ce239267c1bc", + }, + { + "type": "URL", + "value": "https://github.com/gogo/protobuf/compare/v1.3.1...v1.3.2", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r68032132c0399c29d6cdc7bd44918535da54060a10a12b1591328bff@%3Cnotifications.skywalking.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r88d69555cb74a129a7bf84838073b61259b4a3830190e05a3b87994e@%3Ccommits.pulsar.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rc1e9ff22c5641d73701ba56362fb867d40ed287cca000b131dcf4a44@%3Ccommits.pulsar.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3121", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0053", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210219-0006/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3121", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20201216223049-8b5274cf687f", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-29652", + "installedVersion": "v0.0.0-20201002170205-7f63de1d35b0", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-29652", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-29652", + "https://errata.almalinux.org/8/ALSA-2021-1796.html", + "https://github.com/advisories/GHSA-3vm4-22fp-5rfm", + "https://go-review.googlesource.com/c/crypto/+/278852", + "https://go.dev/cl/278852", + "https://go.googlesource.com/crypto/+/8b5274cf687fd9316b4108863654cc57385531e8", + "https://groups.google.com/g/golang-announce/c/ouZIlBimOsE?pli=1", + "https://linux.oracle.com/cve/CVE-2020-29652.html", + "https://linux.oracle.com/errata/ELSA-2021-1796.html", + "https://lists.apache.org/thread.html/r68032132c0399c29d6cdc7bd44918535da54060a10a12b1591328bff@%3Cnotifications.skywalking.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2020-29652", + "https://pkg.go.dev/vuln/GO-2021-0227", + "https://www.cve.org/CVERecord?id=CVE-2020-29652", + ], + }, + "category": "Vulnerability", + "description": "A nil pointer dereference in the golang.org/x/crypto/ssh component through v0.0.0-20201203163018-be400aefbc4c for Go allows remote attackers to cause a denial of service against SSH servers.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "golang: crypto/ssh: crafted authentication request can lead to nil pointer dereference", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-29652", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-29652", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-29652", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-1796.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-3vm4-22fp-5rfm", + }, + { + "type": "URL", + "value": "https://go-review.googlesource.com/c/crypto/+/278852", + }, + { + "type": "URL", + "value": "https://go.dev/cl/278852", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/crypto/+/8b5274cf687fd9316b4108863654cc57385531e8", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/ouZIlBimOsE?pli=1", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-29652.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-1796.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r68032132c0399c29d6cdc7bd44918535da54060a10a12b1591328bff@%3Cnotifications.skywalking.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-29652", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0227", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-29652", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20211202192323-5770296d904e", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-43565", + "installedVersion": "v0.0.0-20201002170205-7f63de1d35b0", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-43565", + "https://github.com/advisories/GHSA-gwc9-m7rh-j2ww", + "https://go.dev/cl/368814/", + "https://go.dev/issues/49932", + "https://groups.google.com/forum/#!forum/golang-announce", + "https://groups.google.com/g/golang-announce/c/2AR1sKiM-Qs", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43565", + "https://pkg.go.dev/vuln/GO-2022-0968", + "https://www.cve.org/CVERecord?id=CVE-2021-43565", + ], + }, + "category": "Vulnerability", + "description": "The x/crypto/ssh package before 0.0.0-20211202192323-5770296d904e of golang.org/x/crypto allows an attacker to panic an SSH server.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "golang.org/x/crypto: empty plaintext packet causes panic", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-43565", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-43565", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-gwc9-m7rh-j2ww", + }, + { + "type": "URL", + "value": "https://go.dev/cl/368814/", + }, + { + "type": "URL", + "value": "https://go.dev/issues/49932", + }, + { + "type": "URL", + "value": "https://groups.google.com/forum/#!forum/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/2AR1sKiM-Qs", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-43565", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0968", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-43565", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27191", + "installedVersion": "v0.0.0-20201002170205-7f63de1d35b0", + "packageName": "golang.org/x/crypto", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191", + ], + }, + "category": "Vulnerability", + "description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "crash in a golang.org/x/crypto/ssh server", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27191", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8008", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1939485", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989564", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989570", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1989575", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2064702", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2121453", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + }, + { + "type": "URL", + "value": "https://go.dev/cl/392355", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27191.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-8008.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0356", + }, + { + "type": "URL", + "value": "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220429-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27191", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20210520170846-37e1c6afe023", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-33194", + "installedVersion": "v0.0.0-20201110031124-69a78807bb2b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-33194", + "https://github.com/advisories/GHSA-83g2-8m93-v3w7", + "https://github.com/golang/net/commit/37e1c6afe02340126705deced573a85ab75209d7", + "https://go.dev/cl/311090", + "https://go.dev/issue/46288", + "https://go.googlesource.com/net/+/37e1c6afe02340126705deced573a85ab75209d7", + "https://groups.google.com/g/golang-announce/c/wPunbCPkWUg", + "https://groups.google.com/g/golang-dev/c/28x0nthP-c8/m/KqWVTjsnBAAJ", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4CHKSFMHZVOBCZSSVRE3UEYNKARTBMTM/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33194", + "https://pkg.go.dev/vuln/GO-2021-0238", + "https://www.cve.org/CVERecord?id=CVE-2021-33194", + ], + }, + "category": "Vulnerability", + "description": "golang.org/x/net before v0.0.0-20210520170846-37e1c6afe023 allows attackers to cause a denial of service (infinite loop) via crafted ParseFragment input.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "golang: x/net/html: infinite loop in ParseFragment", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33194", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33194", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-83g2-8m93-v3w7", + }, + { + "type": "URL", + "value": "https://github.com/golang/net/commit/37e1c6afe02340126705deced573a85ab75209d7", + }, + { + "type": "URL", + "value": "https://go.dev/cl/311090", + }, + { + "type": "URL", + "value": "https://go.dev/issue/46288", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/net/+/37e1c6afe02340126705deced573a85ab75209d7", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/wPunbCPkWUg", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/28x0nthP-c8/m/KqWVTjsnBAAJ", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4CHKSFMHZVOBCZSSVRE3UEYNKARTBMTM/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33194", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0238", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33194", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20211209124913-491a49abca63", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-44716", + "installedVersion": "v0.0.0-20201110031124-69a78807bb2b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716", + ], + }, + "category": "Vulnerability", + "description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "golang: net/http: limit growth of header canonicalization cache", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-44716", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + }, + { + "type": "URL", + "value": "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + }, + { + "type": "URL", + "value": "https://go.dev/cl/369794", + }, + { + "type": "URL", + "value": "https://go.dev/issue/50058", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-44716.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-0001.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0288", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220121-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-44716", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-27664", + "installedVersion": "v0.0.0-20201110031124-69a78807bb2b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664", + ], + }, + "category": "Vulnerability", + "description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "handle server errors after sending GOAWAY", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-27664", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2357", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2124669", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2132872", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2357.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:7129", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69cg-p879-7622", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/54658", + }, + { + "type": "URL", + "value": "https://go.dev/cl/428735", + }, + { + "type": "URL", + "value": "https://go.dev/issue/54658", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-27664.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2802.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0969", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-26", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-27664", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.7.0", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41723", + "installedVersion": "v0.0.0-20201110031124-69a78807bb2b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723", + ], + }, + "category": "Vulnerability", + "description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "avoid quadratic complexity in HPACK decoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41723", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468135", + }, + { + "type": "URL", + "value": "https://go.dev/cl/468295", + }, + { + "type": "URL", + "value": "https://go.dev/issue/57855", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2023-1571", + }, + { + "type": "URL", + "value": "https://vuln.go.dev/ID/GO-2023-1571.json", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41723", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20210428140749-89ef3d95e781", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-31525", + "installedVersion": "v0.0.0-20201110031124-69a78807bb2b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-31525", + "https://github.com/advisories/GHSA-h86h-8ppg-mxmh", + "https://github.com/golang/go/issues/45710", + "https://go.dev/cl/313069", + "https://go.dev/issue/45710", + "https://go.googlesource.com/net/+/89ef3d95e781148a0951956029c92a211477f7f9", + "https://groups.google.com/g/golang-announce/c/cu9SP4eSXMc", + "https://linux.oracle.com/cve/CVE-2021-31525.html", + "https://linux.oracle.com/errata/ELSA-2021-3076.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ISRZZ6NY5R2TBYE72KZFOCO25TEUQTBF/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-31525", + "https://pkg.go.dev/vuln/GO-2022-0236", + "https://security.gentoo.org/glsa/202208-02", + "https://www.cve.org/CVERecord?id=CVE-2021-31525", + ], + }, + "category": "Vulnerability", + "description": "net/http in Go before 1.15.12 and 1.16.x before 1.16.4 allows remote attackers to cause a denial of service (panic) via a large header to ReadRequest or ReadResponse. Server, Transport, and Client can each be affected in some configurations.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "golang: net/http: panic in ReadRequest and ReadResponse when reading a very large header", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-31525", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-31525", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-h86h-8ppg-mxmh", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/45710", + }, + { + "type": "URL", + "value": "https://go.dev/cl/313069", + }, + { + "type": "URL", + "value": "https://go.dev/issue/45710", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/net/+/89ef3d95e781148a0951956029c92a211477f7f9", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/cu9SP4eSXMc", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-31525.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-3076.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ISRZZ6NY5R2TBYE72KZFOCO25TEUQTBF/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-31525", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0236", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-31525", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.4.0", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-41717", + "installedVersion": "v0.0.0-20201110031124-69a78807bb2b", + "packageName": "golang.org/x/net", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717", + ], + }, + "category": "Vulnerability", + "description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "excessive memory growth in a Go server accepting HTTP/2 requests", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-41717", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2367", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2092793", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2161274", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2367.html", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455635", + }, + { + "type": "URL", + "value": "https://go.dev/cl/455717", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56350", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-41717.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2866.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1144", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-41717", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.0.0-20220412211240-33da011f77ad", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-29526", + "installedVersion": "v0.0.0-20201112073958-5cba982894dd", + "packageName": "golang.org/x/sys", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526", + ], + }, + "category": "Vulnerability", + "description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "faccessat checks wrong group", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-29526", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/52313", + }, + { + "type": "URL", + "value": "https://go.dev/cl/399539", + }, + { + "type": "URL", + "value": "https://go.dev/cl/400074", + }, + { + "type": "URL", + "value": "https://go.dev/issue/52313", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-29526.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5337.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0493", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6038-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-29526", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "0.3.7", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2021-38561", + "installedVersion": "v0.3.4", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561", + ], + }, + "category": "Vulnerability", + "description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-38561", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://deps.dev/advisory/OSV/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + }, + { + "type": "URL", + "value": "https://go.dev/cl/340830", + }, + { + "type": "URL", + "value": "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/golang.org/x/text/language", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2021-0113", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-38561", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "0.3.8", + "foundIn": "Target: 'bin/kindnetd' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-32149", + "installedVersion": "v0.3.4", + "packageName": "golang.org/x/text", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149", + ], + }, + "category": "Vulnerability", + "description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": undefined, + "name": "ParseAcceptLanguage takes a long time to parse complex tags", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-32149", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + }, + { + "type": "URL", + "value": "https://github.com/golang/go/issues/56152", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + }, + { + "type": "URL", + "value": "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + }, + { + "type": "URL", + "value": "https://go.dev/cl/442235", + }, + { + "type": "URL", + "value": "https://go.dev/issue/56152", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-1059", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5873-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-32149", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'kindnet-cni' of DaemonSet 'kindnet' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV009", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009", + ], + }, + "category": "Misconfiguration", + "description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Do not set 'spec.template.spec.hostNetwork' to true.", + "name": "Access to host network(DaemonSet 'kindnet' should not set 'spec.template.spec.hostNetwork' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv009", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV022", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv022", + ], + }, + "category": "Misconfiguration", + "description": "Adding NET_RAW or capabilities beyond the default set must be disallowed.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Do not set spec.containers[*].securityContext.capabilities.add and spec.initContainers[*].securityContext.capabilities.add", + "name": "Non-default capabilities added(Container 'kindnet-cni' of DaemonSet 'kindnet' should not set 'securityContext.capabilities.add')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv022", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV023", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023", + ], + }, + "category": "Misconfiguration", + "description": "HostPath volumes must be forbidden.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Do not set 'spec.volumes[*].hostPath'.", + "name": "hostPath volumes mounted(DaemonSet 'kindnet' should not set 'spec.template.volumes.hostPath')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv023", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kindnet' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kindnet'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ConfigMap/extension-apiserver-authentication' / Class: 'config' / Type: 'kubernetes'", + "id": "AVD-KSV-0110", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://avd.aquasec.com/misconfig/avd-ksv-0110", + ], + }, + "category": "Misconfiguration", + "description": "Storing sensitive content such as usernames and email addresses in configMaps is unsafe", + "location": "Namespace: 'kube-system' / Kind: 'ConfigMap' / Name: 'extension-apiserver-authentication'", + "mitigation": "Remove sensitive content from configMap data value", + "name": "ConfigMap with sensitive content(ConfigMap 'extension-apiserver-authentication' in 'kube-system' namespace stores sensitive contents in key(s) or value(s) '{"requestheader-username-headers"}')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/avd-ksv-0110", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.1.1-r0", + "foundIn": "Target: 'docker.io/aquasec/trivy:0.42.0 (alpine 3.18.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2023-2650", + "installedVersion": "3.1.0-r4", + "packageName": "libcrypto3", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://linux.oracle.com/cve/CVE-2023-2650.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://ubuntu.com/security/notices/USN-6188-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-2650.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6188-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.1.1-r0", + "foundIn": "Target: 'docker.io/aquasec/trivy:0.42.0 (alpine 3.18.0)' / Class: 'os-pkgs' / Type: 'alpine'", + "id": "CVE-2023-2650", + "installedVersion": "3.1.0-r4", + "packageName": "libssl3", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://linux.oracle.com/cve/CVE-2023-2650.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://ubuntu.com/security/notices/USN-6188-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-2650.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6188-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'usr/local/bin/trivy' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-8911", + "installedVersion": "v1.44.245", + "packageName": "github.com/aws/aws-sdk-go", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-8911", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869800", + "https://github.com/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8911", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8911", + ], + }, + "category": "Vulnerability", + "description": "A padding oracle vulnerability exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. The SDK allows users to encrypt files with AES-CBC without computing a Message Authentication Code (MAC), which then allows an attacker who has write access to the target's S3 bucket and can observe whether or not an endpoint with access to the key can decrypt a file, they can reconstruct the plaintext with (on average) 128*length (plaintext) queries to the endpoint, by exploiting CBC's ability to manipulate the bytes of the next block and PKCS5 padding errors. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": undefined, + "name": "aws/aws-sdk-go: CBC padding oracle issue in AWS S3 Crypto SDK for golang", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-8911", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-8911", + }, + { + "type": "URL", + "value": "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1869800", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-f5pg-7wfw-84q9", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/pull/3403", + }, + { + "type": "URL", + "value": "https://github.com/google/security-research/security/advisories/GHSA-f5pg-7wfw-84q9", + }, + { + "type": "URL", + "value": "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-8911", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0646", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-8911", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'usr/local/bin/trivy' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2020-8912", + "installedVersion": "v1.44.245", + "packageName": "github.com/aws/aws-sdk-go", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-8912", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869801", + "https://github.com/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8912", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8912", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability in the in-band key negotiation exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. An attacker with write access to the targeted bucket can change the encryption algorithm of an object in the bucket, which can then allow them to change AES-GCM to AES-CTR. Using this in combination with a decryption oracle can reveal the authentication key used by AES-GCM as decrypting the GMAC tag leaves the authentication key recoverable as an algebraic equation. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": undefined, + "name": "aws-sdk-go: In-band key negotiation issue in AWS S3 Crypto SDK for golang", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-8912", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-8912", + }, + { + "type": "URL", + "value": "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1869801", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-7f33-f4f5-xwgw", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + }, + { + "type": "URL", + "value": "https://github.com/aws/aws-sdk-go/pull/3403", + }, + { + "type": "URL", + "value": "https://github.com/google/security-research/security/advisories/GHSA-7f33-f4f5-xwgw", + }, + { + "type": "URL", + "value": "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-8912", + }, + { + "type": "URL", + "value": "https://pkg.go.dev/vuln/GO-2022-0646", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-8912", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "3.0.0-20220521103104-8f96da9f5d5e", + "foundIn": "Target: 'lurker' / Class: 'lang-pkgs' / Type: 'gobinary'", + "id": "CVE-2022-28948", + "installedVersion": "v3.0.0-20210107192922-496545a6307b", + "packageName": "gopkg.in/yaml.v3", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-28948", + "https://github.com/advisories/GHSA-hp87-p4gw-j4gq", + "https://github.com/go-yaml/yaml/commit/8f96da9f5d5eff988554c1aae1784627c4bf6754", + "https://github.com/go-yaml/yaml/issues/666", + "https://nvd.nist.gov/vuln/detail/CVE-2022-28948", + "https://security.netapp.com/advisory/ntap-20220923-0006/", + "https://www.cve.org/CVERecord?id=CVE-2022-28948", + ], + }, + "category": "Vulnerability", + "description": "An issue in the Unmarshal function in Go-Yaml v3 causes the program to crash when attempting to deserialize invalid input.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": undefined, + "name": "crash when attempting to deserialize invalid input", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-28948", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-28948", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-hp87-p4gw-j4gq", + }, + { + "type": "URL", + "value": "https://github.com/go-yaml/yaml/commit/8f96da9f5d5eff988554c1aae1784627c4bf6754", + }, + { + "type": "URL", + "value": "https://github.com/go-yaml/yaml/issues/666", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-28948", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220923-0006/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-28948", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV015", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015", + ], + }, + "category": "Misconfiguration", + "description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Set 'containers[].resources.requests.cpu'.", + "name": "CPU requests not specified(Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'resources.requests.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv015", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'lurker' of Job 'scan-trivy-k8s-dnnfb' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'lurker' of Job 'scan-trivy-k8s-dnnfb' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Job/scan-trivy-k8s-dnnfb' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'integration-tests' / Kind: 'Job' / Name: 'scan-trivy-k8s-dnnfb'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/system:controller:bootstrap-signer' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Namespace: 'kube-public' / Kind: 'Role' / Name: 'system:controller:bootstrap-signer'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(Role 'system:controller:bootstrap-signer' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/system::leader-locking-kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Namespace: 'kube-system' / Kind: 'Role' / Name: 'system::leader-locking-kube-controller-manager'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(Role 'system::leader-locking-kube-controller-manager' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/system::leader-locking-kube-scheduler' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Namespace: 'kube-system' / Kind: 'Role' / Name: 'system::leader-locking-kube-scheduler'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(Role 'system::leader-locking-kube-scheduler' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/system:controller:bootstrap-signer' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Namespace: 'kube-system' / Kind: 'Role' / Name: 'system:controller:bootstrap-signer'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/system:controller:cloud-provider' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Namespace: 'kube-system' / Kind: 'Role' / Name: 'system:controller:cloud-provider'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(Role 'system:controller:cloud-provider' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/system:controller:token-cleaner' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Namespace: 'kube-system' / Kind: 'Role' / Name: 'system:controller:token-cleaner'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/kubernetes-dashboard' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Role' / Name: 'kubernetes-dashboard'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/kubernetes-dashboard' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Namespace: 'kubernetes-dashboard' / Kind: 'Role' / Name: 'kubernetes-dashboard'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(Role 'kubernetes-dashboard' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Role/leader-election-role' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Namespace: 'securecodebox-system' / Kind: 'Role' / Name: 'leader-election-role'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(Role 'leader-election-role' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/cluster-admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV044", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv044", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits wildcard verb on wildcard resource", + "location": "Kind: 'ClusterRole' / Name: 'cluster-admin'", + "mitigation": "Create a role which does not permit wildcard verb on wildcard resource", + "name": "No wildcard verb and resource roles(Role permits wildcard verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv044", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/cluster-admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV046", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits specific verb on wildcard resources", + "location": "Kind: 'ClusterRole' / Name: 'cluster-admin'", + "mitigation": "Create a role which does not permit specific verb on wildcard resources", + "name": "No wildcard resource roles(Role permits specific verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv046", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(ClusterRole 'admin' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV050", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050", + ], + }, + "category": "Misconfiguration", + "description": "An effective level of access equivalent to cluster-admin should not be provided.", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "name": "Do not allow management of RBAC resources(ClusterRole 'admin' should not have access to resources ["roles", "rolebindings"] for verbs ["create", "update", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv050", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'admin' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'admin' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'admin'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'admin' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(ClusterRole 'edit' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'edit' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'edit' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'edit'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'edit' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/local-path-provisioner-role' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV045", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv045", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits wildcard verb on specific resources", + "location": "Kind: 'ClusterRole' / Name: 'local-path-provisioner-role'", + "mitigation": "Create a role which does not permit wildcard verb on specific resources", + "name": "No wildcard verb roles(Role permits wildcard verb on specific resources)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv045", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/local-path-provisioner-role' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'local-path-provisioner-role'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'local-path-provisioner-role' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/manager-role' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'manager-role'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/manager-role' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV050", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050", + ], + }, + "category": "Misconfiguration", + "description": "An effective level of access equivalent to cluster-admin should not be provided.", + "location": "Kind: 'ClusterRole' / Name: 'manager-role'", + "mitigation": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "name": "Do not allow management of RBAC resources(ClusterRole 'manager-role' should not have access to resources ["roles", "rolebindings"] for verbs ["create", "update", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv050", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/manager-role' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV050", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050", + ], + }, + "category": "Misconfiguration", + "description": "An effective level of access equivalent to cluster-admin should not be provided.", + "location": "Kind: 'ClusterRole' / Name: 'manager-role'", + "mitigation": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "name": "Do not allow management of RBAC resources(ClusterRole 'manager-role' should not have access to resources ["roles", "rolebindings"] for verbs ["create", "update", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv050", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3374", + "installedVersion": "1.8.2.2", + "packageName": "apt", + "references": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374", + ], + }, + "category": "Vulnerability", + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + }, + { + "type": "URL", + "value": "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + }, + { + "type": "URL", + "value": "https://seclists.org/fulldisclosure/2011/Sep/221", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2011-3374", + }, + { + "type": "URL", + "value": "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2011-3374", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-37600", + "installedVersion": "1:2.33.1-0.1", + "packageName": "bsdutils", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-37600", + "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + "https://github.com/karelzak/util-linux/issues/1395", + "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + "https://security.netapp.com/advisory/ntap-20210902-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-37600", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "util-linux: integer overflow can lead to buffer overflow in get_sem_elements() in sys-utils/ipcutils.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-37600", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-37600", + }, + { + "type": "URL", + "value": "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + }, + { + "type": "URL", + "value": "https://github.com/karelzak/util-linux/issues/1395", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210902-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-37600", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0563", + "installedVersion": "1:2.33.1-0.1", + "packageName": "bsdutils", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an "INPUTRC" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0563", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220331-0002/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0563", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2016-2781", + "installedVersion": "8.30-3", + "packageName": "coreutils", + "references": [ + "http://seclists.org/oss-sec/2016/q1/452", + "http://www.openwall.com/lists/oss-security/2016/02/28/2", + "http://www.openwall.com/lists/oss-security/2016/02/28/3", + "https://access.redhat.com/security/cve/CVE-2016-2781", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lore.kernel.org/patchwork/patch/793178/", + "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + "https://www.cve.org/CVERecord?id=CVE-2016-2781", + ], + }, + "category": "Vulnerability", + "description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "coreutils: Non-privileged session can escape to the parent session in chroot", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2016-2781", + }, + { + "type": "URL", + "value": "http://seclists.org/oss-sec/2016/q1/452", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2016/02/28/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2016/02/28/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/patchwork/patch/793178/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2016-2781", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-18018", + "installedVersion": "8.30-3", + "packageName": "coreutils", + "references": [ + "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + "https://access.redhat.com/security/cve/CVE-2017-18018", + "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + "https://www.cve.org/CVERecord?id=CVE-2017-18018", + ], + }, + "category": "Vulnerability", + "description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX "-R -L" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "coreutils: race condition vulnerability in chown and chgrp", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-18018", + }, + { + "type": "URL", + "value": "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-18018", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-18018", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.19.8", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1664", + "installedVersion": "1.19.7", + "packageName": "dpkg", + "references": [ + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1664", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f23dddc17f69c9598477098c7fb9936e15fa495", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=58814cacee39c4ce9e2cd0e3a3b9b57ad437eff5", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=7a6c03cb34d4a09f35df2f10779cbf1b70a5200b", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=faa4c92debe45412bfcf8a44f26e827800bb24be", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00033.html", + "https://lists.debian.org/debian-security-announce/2022/msg00115.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1664", + "https://security.netapp.com/advisory/ntap-20221007-0002/", + "https://ubuntu.com/security/notices/USN-5446-1", + "https://ubuntu.com/security/notices/USN-5446-2", + ], + }, + "category": "Vulnerability", + "description": "Dpkg::Source::Archive in dpkg, the Debian package management system, before version 1.21.8, 1.20.10, 1.19.8, 1.18.26 is prone to a directory traversal vulnerability. When extracting untrusted source packages in v2 and v3 source package formats that include a debian.tar, the in-place extraction can lead to directory traversal situations on specially crafted orig.tar and debian.tar tarballs.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Dpkg::Source::Archive in dpkg, the Debian package management system, b ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1664", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1664", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f23dddc17f69c9598477098c7fb9936e15fa495", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=58814cacee39c4ce9e2cd0e3a3b9b57ad437eff5", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=7a6c03cb34d4a09f35df2f10779cbf1b70a5200b", + }, + { + "type": "URL", + "value": "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=faa4c92debe45412bfcf8a44f26e827800bb24be", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/05/msg00033.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-security-announce/2022/msg00115.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1664", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221007-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5446-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5446-2", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-12886", + "installedVersion": "8.3.0-6", + "packageName": "gcc-8-base", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-12886", + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379&view=markup", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "https://www.cve.org/CVERecord?id=CVE-2018-12886", + "https://www.gnu.org/software/gcc/gcc-8/changes.html", + ], + }, + "category": "Vulnerability", + "description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-12886", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379&view=markup", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://www.gnu.org/software/gcc/gcc-8/changes.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-15847", + "installedVersion": "8.3.0-6", + "packageName": "gcc-8-base", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + "https://access.redhat.com/security/cve/CVE-2019-15847", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + "https://linux.oracle.com/cve/CVE-2019-15847.html", + "https://linux.oracle.com/errata/ELSA-2020-1864.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + "https://www.cve.org/CVERecord?id=CVE-2019-15847", + ], + }, + "category": "Vulnerability", + "description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "gcc: POWER9 "DARN" RNG intrinsic produces repeated output", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-15847", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-15847", + }, + { + "type": "URL", + "value": "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-15847.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1864.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-15847", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.2.12-1+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-34903", + "installedVersion": "2.2.12-1+deb10u1", + "packageName": "gpgv", + "references": [ + "http://www.openwall.com/lists/oss-security/2022/07/02/1", + "https://access.redhat.com/errata/RHSA-2022:6602", + "https://access.redhat.com/security/cve/CVE-2022-34903", + "https://bugs.debian.org/1014157", + "https://bugzilla.redhat.com/2102868", + "https://bugzilla.redhat.com/show_bug.cgi?id=2102868", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34903", + "https://dev.gnupg.org/T6027", + "https://errata.almalinux.org/9/ALSA-2022-6602.html", + "https://errata.rockylinux.org/RLSA-2022:6602", + "https://linux.oracle.com/cve/CVE-2022-34903.html", + "https://linux.oracle.com/errata/ELSA-2022-6602.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-34903", + "https://security.netapp.com/advisory/ntap-20220826-0005/", + "https://ubuntu.com/security/notices/USN-5503-1", + "https://ubuntu.com/security/notices/USN-5503-2", + "https://www.cve.org/CVERecord?id=CVE-2022-34903", + "https://www.debian.org/security/2022/dsa-5174", + "https://www.openwall.com/lists/oss-security/2022/06/30/1", + ], + }, + "category": "Vulnerability", + "description": "GnuPG through 2.3.6, in unusual situations where an attacker possesses any secret-key information from a victim's keyring and other constraints (e.g., use of GPGME) are met, allows signature forgery via injection into the status line.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Signature spoofing via status line injection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-34903", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/07/02/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6602", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/1014157", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2102868", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2102868", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T6027", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6602.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:6602", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-34903.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-6602.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220826-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5503-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5503-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-34903", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5174", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/06/30/1", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-14855", + "installedVersion": "2.2.12-1+deb10u1", + "packageName": "gpgv", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-14855", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-14855", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-14855", + "https://dev.gnupg.org/T4755", + "https://eprint.iacr.org/2020/014.pdf", + "https://lists.gnupg.org/pipermail/gnupg-announce/2019q4/000442.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-14855", + "https://rwc.iacr.org/2020/slides/Leurent.pdf", + "https://ubuntu.com/security/notices/USN-4516-1", + "https://usn.ubuntu.com/4516-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-14855", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the way certificate signatures could be forged using collisions found in the SHA-1 algorithm. An attacker could use this weakness to create forged certificate signatures. This issue affects GnuPG versions before 2.2.18.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "gnupg2: OpenPGP Key Certification Forgeries with SHA-1", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-14855", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-14855", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-14855", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-14855", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T4755", + }, + { + "type": "URL", + "value": "https://eprint.iacr.org/2020/014.pdf", + }, + { + "type": "URL", + "value": "https://lists.gnupg.org/pipermail/gnupg-announce/2019q4/000442.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-14855", + }, + { + "type": "URL", + "value": "https://rwc.iacr.org/2020/slides/Leurent.pdf", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4516-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4516-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-14855", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3219", + "installedVersion": "2.2.12-1+deb10u1", + "packageName": "gpgv", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-3219", + "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + "https://dev.gnupg.org/D556", + "https://dev.gnupg.org/T5993", + "https://marc.info/?l=oss-security&m=165696590211434&w=4", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + "https://security.netapp.com/advisory/ntap-20230324-0001/", + "https://www.cve.org/CVERecord?id=CVE-2022-3219", + ], + }, + "category": "Vulnerability", + "description": "GnuPG can be made to spin on a relatively small input by (for example) crafting a public key with thousands of signatures attached, compressed down to just a few KB.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "denial of service issue (resource consumption) using compressed packets", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3219", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3219", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/D556", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5993", + }, + { + "type": "URL", + "value": "https://marc.info/?l=oss-security&m=165696590211434&w=4", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230324-0001/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3219", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.9-3+deb10u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1271", + "installedVersion": "1.9-3", + "packageName": "gzip", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8", + ], + }, + "category": "Vulnerability", + "description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "arbitrary-file-write vulnerability", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1271", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:4940", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2073310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-4940.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:4940", + }, + { + "type": "URL", + "value": "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1271.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5052.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-01", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220930-0006/", + }, + { + "type": "URL", + "value": "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-4", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/04/07/8", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "iptables", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-11360", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "iptables", + "references": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360", + ], + }, + "category": "Vulnerability", + "description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "iptables: buffer overflow in iptables-restore", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-11360", + }, + { + "type": "URL", + "value": "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-11360", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3374", + "installedVersion": "1.8.2.2", + "packageName": "libapt-pkg5.0", + "references": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374", + ], + }, + "category": "Vulnerability", + "description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2011-3374", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + }, + { + "type": "URL", + "value": "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + }, + { + "type": "URL", + "value": "https://seclists.org/fulldisclosure/2011/Sep/221", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2011-3374", + }, + { + "type": "URL", + "value": "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2011-3374", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.0.6-9.2~deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3112-1", + "installedVersion": "1.0.6-9.2~deb10u1", + "packageName": "libbz2-1.0", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "bzip2 - bugfix update", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-33574", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-33574", + "https://linux.oracle.com/cve/CVE-2021-33574.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210629-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1", + "https://www.cve.org/CVERecord?id=CVE-2021-33574", + ], + }, + "category": "Vulnerability", + "description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: mq_notify does not handle separately allocated thread attributes", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33574", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33574", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-33574.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9560.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210629-0005/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33574", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-35942", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-35942.json", + "https://access.redhat.com/security/cve/CVE-2021-35942", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-35942", + "https://linux.oracle.com/cve/CVE-2021-35942.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + "https://security.gentoo.org/glsa/202208-24", + "https://security.netapp.com/advisory/ntap-20210827-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + "https://sourceware.org/glibc/wiki/Security%20Exceptions", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-35942", + ], + }, + "category": "Vulnerability", + "description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Arbitrary read in wordexp()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-35942", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-35942.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-35942", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-35942", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-35942.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9560.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-24", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210827-0005/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + }, + { + "type": "URL", + "value": "https://sourceware.org/glibc/wiki/Security%20Exceptions", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5699-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-35942", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-23218", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-23218", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23218", + "https://linux.oracle.com/cve/CVE-2022-23218.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23218", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Stack-based buffer overflow in svcunix_create via long pathnames", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-23218", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-23218.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9421.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-24", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-23219", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-23219", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23219", + "https://linux.oracle.com/cve/CVE-2022-23219.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23219", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Stack-based buffer overflow in sunrpc clnt_create via a long pathname", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-23219", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-23219.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9421.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-24", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-1751", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-1751", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1751", + "https://linux.oracle.com/cve/CVE-2020-1751.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200430-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1751", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: array overflow in backtrace functions for powerpc", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-1751", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-1751.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4444.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202006-04", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200430-0002/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-1751", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-1752", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-1752", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1752", + "https://linux.oracle.com/cve/CVE-2020-1752.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + "https://security.gentoo.org/glsa/202101-20", + "https://security.netapp.com/advisory/ntap-20200511-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1752", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: use-after-free in glob() function when expanding ~user", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-1752", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-1752.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4444.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202101-20", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200511-0005/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-1752", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-6096", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-6096", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6096", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/attachment.cgi?id=12334", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + "https://ubuntu.com/security/notices/USN-4954-1", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2020-6096", + "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + ], + }, + "category": "Vulnerability", + "description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: signed comparison vulnerability in the ARMv7 memcpy function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-6096", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202101-20", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/attachment.cgi?id=12334", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4954-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3326", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/01/28/2", + "https://access.redhat.com/security/cve/CVE-2021-3326", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=2146", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3326", + "https://linux.oracle.com/cve/CVE-2021-3326.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210304-0007/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + "https://sourceware.org/pipermail/libc-alpha/2021-January/122058.html", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3326", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Assertion failure in ISO-2022-JP-3 gconv module related to combining characters", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3326", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/01/28/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/project-zero/issues/detail?id=2146", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3326.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210304-0007/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + }, + { + "type": "URL", + "value": "https://sourceware.org/pipermail/libc-alpha/2021-January/122058.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5699-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3999", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3999", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3999.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9234.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221104-0001/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/01/24/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2016-10228", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://openwall.com/lists/oss-security/2017/03/01/10", + "http://www.securityfocus.com/bid/96525", + "https://access.redhat.com/security/cve/CVE-2016-10228", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10228", + "https://linux.oracle.com/cve/CVE-2016-10228.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2016-10228", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: iconv program can hang when invoked with the -c option", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2016-10228", + }, + { + "type": "URL", + "value": "http://openwall.com/lists/oss-security/2017/03/01/10", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/96525", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2016-10228.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202101-20", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5768-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-25013", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-25013", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-25013", + "https://linux.oracle.com/cve/CVE-2019-25013.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210205-0004/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2019-25013", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: buffer over-read in iconv when processing invalid multi-byte input sequences in the EUC-KR encoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-25013", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-25013.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210205-0004/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5768-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-10029", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + "https://access.redhat.com/security/cve/CVE-2020-10029", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10029", + "https://linux.oracle.com/cve/CVE-2020-10029.html", + "https://linux.oracle.com/errata/ELSA-2021-0348.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200327-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-10029", + ], + }, + "category": "Vulnerability", + "description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-10029", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-10029", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10029", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-10029.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-0348.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202006-04", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200327-0003/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-10029", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-27618", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-27618", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27618", + "https://linux.oracle.com/cve/CVE-2020-27618.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210401-0006/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2020-27618", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: iconv when processing invalid multi-byte input sequences fails to advance the input state, which could result in an infinite loop", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-27618", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-27618.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210401-0006/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5768-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-4756", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756", + ], + }, + "category": "Vulnerability", + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-4756", + }, + { + "type": "URL", + "value": "http://cxib.net/stuff/glob-0day.c", + }, + { + "type": "URL", + "value": "http://securityreason.com/achievement_securityalert/89", + }, + { + "type": "URL", + "value": "http://securityreason.com/exploitalert/9223", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-4756", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-20796", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796", + ], + }, + "category": "Vulnerability", + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-20796", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/107160", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190315-0002/", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-20796", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010022", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: stack guard protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010022", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010023", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010023", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109167", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010024", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: ASLR bypass using cache of thread stack and heap", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010024", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109162", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010025", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is "ASLR bypass itself is not a vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: information disclosure of heap addresses of pthread_created thread", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010025", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19126", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19126", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19126", + "https://linux.oracle.com/cve/CVE-2019-19126.html", + "https://linux.oracle.com/errata/ELSA-2020-3861.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + "https://sourceware.org/ml/libc-alpha/2019-11/msg00649.html", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-19126", + ], + }, + "category": "Vulnerability", + "description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19126", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19126", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19126", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-19126.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-3861.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + }, + { + "type": "URL", + "value": "https://sourceware.org/ml/libc-alpha/2019-11/msg00649.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19126", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-9192", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-9192", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-9192", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-27645", + "installedVersion": "2.28-10", + "packageName": "libc-bin", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-27645", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27645", + "https://linux.oracle.com/cve/CVE-2021-27645.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + "https://security.gentoo.org/glsa/202107-07", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27462", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2021-27645", + ], + }, + "category": "Vulnerability", + "description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Use-after-free in addgetnetgrentX function in netgroupcache.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-27645", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-27645", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27645", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-27645.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9560.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27462", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-27645", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-33574", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-33574", + "https://linux.oracle.com/cve/CVE-2021-33574.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210629-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1", + "https://www.cve.org/CVERecord?id=CVE-2021-33574", + ], + }, + "category": "Vulnerability", + "description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: mq_notify does not handle separately allocated thread attributes", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33574", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33574", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-33574.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9560.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210629-0005/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33574", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-35942", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-35942.json", + "https://access.redhat.com/security/cve/CVE-2021-35942", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-35942", + "https://linux.oracle.com/cve/CVE-2021-35942.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + "https://security.gentoo.org/glsa/202208-24", + "https://security.netapp.com/advisory/ntap-20210827-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + "https://sourceware.org/glibc/wiki/Security%20Exceptions", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-35942", + ], + }, + "category": "Vulnerability", + "description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Arbitrary read in wordexp()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-35942", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-35942.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-35942", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-35942", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-35942.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9560.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-24", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210827-0005/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + }, + { + "type": "URL", + "value": "https://sourceware.org/glibc/wiki/Security%20Exceptions", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5699-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-35942", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-23218", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-23218", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23218", + "https://linux.oracle.com/cve/CVE-2022-23218.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23218", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Stack-based buffer overflow in svcunix_create via long pathnames", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-23218", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-23218.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9421.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-24", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-23218", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-23219", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2022-23219", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23219", + "https://linux.oracle.com/cve/CVE-2022-23219.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23219", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Stack-based buffer overflow in sunrpc clnt_create via a long pathname", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-23219", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-23219.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9421.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202208-24", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-23219", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-1751", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-1751", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1751", + "https://linux.oracle.com/cve/CVE-2020-1751.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200430-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1751", + ], + }, + "category": "Vulnerability", + "description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: array overflow in backtrace functions for powerpc", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-1751", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-1751.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4444.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202006-04", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200430-0002/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-1751", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-1752", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-1752", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1752", + "https://linux.oracle.com/cve/CVE-2020-1752.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + "https://security.gentoo.org/glsa/202101-20", + "https://security.netapp.com/advisory/ntap-20200511-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1752", + ], + }, + "category": "Vulnerability", + "description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: use-after-free in glob() function when expanding ~user", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-1752", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-1752.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4444.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202101-20", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200511-0005/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-1752", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-6096", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-6096", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6096", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/attachment.cgi?id=12334", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + "https://ubuntu.com/security/notices/USN-4954-1", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2020-6096", + "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + ], + }, + "category": "Vulnerability", + "description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: signed comparison vulnerability in the ARMv7 memcpy function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-6096", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202101-20", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/attachment.cgi?id=12334", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4954-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-6096", + }, + { + "type": "URL", + "value": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3326", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/01/28/2", + "https://access.redhat.com/security/cve/CVE-2021-3326", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=2146", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3326", + "https://linux.oracle.com/cve/CVE-2021-3326.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210304-0007/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + "https://sourceware.org/pipermail/libc-alpha/2021-January/122058.html", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3326", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Assertion failure in ISO-2022-JP-3 gconv module related to combining characters", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3326", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/01/28/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/project-zero/issues/detail?id=2146", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3326.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210304-0007/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + }, + { + "type": "URL", + "value": "https://sourceware.org/pipermail/libc-alpha/2021-January/122058.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5699-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3326", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3999", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3999", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3999.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9234.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221104-0001/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3999", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/01/24/4", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2016-10228", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://openwall.com/lists/oss-security/2017/03/01/10", + "http://www.securityfocus.com/bid/96525", + "https://access.redhat.com/security/cve/CVE-2016-10228", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10228", + "https://linux.oracle.com/cve/CVE-2016-10228.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2016-10228", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: iconv program can hang when invoked with the -c option", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2016-10228", + }, + { + "type": "URL", + "value": "http://openwall.com/lists/oss-security/2017/03/01/10", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/96525", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2016-10228.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202101-20", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5768-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2016-10228", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-25013", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-25013", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-25013", + "https://linux.oracle.com/cve/CVE-2019-25013.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210205-0004/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2019-25013", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: buffer over-read in iconv when processing invalid multi-byte input sequences in the EUC-KR encoding", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-25013", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-25013.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210205-0004/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5768-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-25013", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-10029", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + "https://access.redhat.com/security/cve/CVE-2020-10029", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10029", + "https://linux.oracle.com/cve/CVE-2020-10029.html", + "https://linux.oracle.com/errata/ELSA-2021-0348.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200327-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-10029", + ], + }, + "category": "Vulnerability", + "description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-10029", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-10029", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10029", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-10029.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-0348.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202006-04", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200327-0003/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + }, + { + "type": "URL", + "value": "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-10029", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-27618", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2020-27618", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27618", + "https://linux.oracle.com/cve/CVE-2020-27618.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210401-0006/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2020-27618", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + ], + }, + "category": "Vulnerability", + "description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: iconv when processing invalid multi-byte input sequences fails to advance the input state, which could result in an infinite loop", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-27618", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-27618.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9344.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210401-0006/", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5768-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-27618", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-4756", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756", + ], + }, + "category": "Vulnerability", + "description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-4756", + }, + { + "type": "URL", + "value": "http://cxib.net/stuff/glob-0day.c", + }, + { + "type": "URL", + "value": "http://securityreason.com/achievement_securityalert/89", + }, + { + "type": "URL", + "value": "http://securityreason.com/exploitalert/9223", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-4756", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-20796", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796", + ], + }, + "category": "Vulnerability", + "description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-20796", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/107160", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190315-0002/", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-20796", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010022", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: stack guard protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010022", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010022", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010022", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010023", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010023", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109167", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K11932200?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010023", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010023", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010024", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate "this is being treated as a non-security bug and no real threat."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: ASLR bypass using cache of thread stack and heap", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010024", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/109162", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010024", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010024", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-1010025", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is "ASLR bypass itself is not a vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: information disclosure of heap addresses of pthread_created thread", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-1010025", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K06046097?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/CVE-2019-1010025", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-1010025", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19126", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19126", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19126", + "https://linux.oracle.com/cve/CVE-2019-19126.html", + "https://linux.oracle.com/errata/ELSA-2020-3861.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + "https://sourceware.org/ml/libc-alpha/2019-11/msg00649.html", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-19126", + ], + }, + "category": "Vulnerability", + "description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19126", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19126", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19126", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-19126.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-3861.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + }, + { + "type": "URL", + "value": "https://sourceware.org/ml/libc-alpha/2019-11/msg00649.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4416-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4416-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19126", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-9192", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-9192", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + }, + { + "type": "URL", + "value": "https://support.f5.com/csp/article/K26346590?utm_source=f5support&utm_medium=RSS", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-9192", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2.28-10+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-27645", + "installedVersion": "2.28-10", + "packageName": "libc6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-27645", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27645", + "https://linux.oracle.com/cve/CVE-2021-27645.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + "https://security.gentoo.org/glsa/202107-07", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27462", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2021-27645", + ], + }, + "category": "Vulnerability", + "description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "glibc: Use-after-free in addgetnetgrentX function in netgroupcache.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-27645", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-27645", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27645", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-27645.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-9560.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-07", + }, + { + "type": "URL", + "value": "https://sourceware.org/bugzilla/show_bug.cgi?id=27462", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5310-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-27645", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-8457", + "installedVersion": "5.3.28+dfsg1-0.5", + "packageName": "libdb5.3", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + "https://access.redhat.com/security/cve/CVE-2019-8457", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + "https://linux.oracle.com/cve/CVE-2019-8457.html", + "https://linux.oracle.com/errata/ELSA-2020-1810.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + "https://security.netapp.com/advisory/ntap-20190606-0002/", + "https://ubuntu.com/security/notices/USN-4004-1", + "https://ubuntu.com/security/notices/USN-4004-2", + "https://ubuntu.com/security/notices/USN-4019-1", + "https://ubuntu.com/security/notices/USN-4019-2", + "https://usn.ubuntu.com/4004-1/", + "https://usn.ubuntu.com/4004-2/", + "https://usn.ubuntu.com/4019-1/", + "https://usn.ubuntu.com/4019-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-8457", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.sqlite.org/releaselog/3_28_0.html", + "https://www.sqlite.org/src/info/90acdbfce9c08858", + ], + }, + "category": "Vulnerability", + "description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "sqlite: heap out-of-bound read in function rtreenode()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-8457", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10365", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-8457.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1810.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190606-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4004-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4004-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4019-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4019-2", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4004-1/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4004-2/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4019-1/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4019-2/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-8457", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2020.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2020.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2020.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + }, + { + "type": "URL", + "value": "https://www.sqlite.org/releaselog/3_28_0.html", + }, + { + "type": "URL", + "value": "https://www.sqlite.org/src/info/90acdbfce9c08858", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-12886", + "installedVersion": "1:8.3.0-6", + "packageName": "libgcc1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-12886", + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379&view=markup", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "https://www.cve.org/CVERecord?id=CVE-2018-12886", + "https://www.gnu.org/software/gcc/gcc-8/changes.html", + ], + }, + "category": "Vulnerability", + "description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-12886", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379&view=markup", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://www.gnu.org/software/gcc/gcc-8/changes.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-15847", + "installedVersion": "1:8.3.0-6", + "packageName": "libgcc1", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + "https://access.redhat.com/security/cve/CVE-2019-15847", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + "https://linux.oracle.com/cve/CVE-2019-15847.html", + "https://linux.oracle.com/errata/ELSA-2020-1864.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + "https://www.cve.org/CVERecord?id=CVE-2019-15847", + ], + }, + "category": "Vulnerability", + "description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "gcc: POWER9 "DARN" RNG intrinsic produces repeated output", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-15847", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-15847", + }, + { + "type": "URL", + "value": "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-15847.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1864.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-15847", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-33560", + "installedVersion": "1.8.4-5", + "packageName": "libgcrypt20", + "references": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + "https://access.redhat.com/security/cve/CVE-2021-33560", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + "https://dev.gnupg.org/T5305", + "https://dev.gnupg.org/T5328", + "https://dev.gnupg.org/T5466", + "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2021-4409.html", + "https://linux.oracle.com/cve/CVE-2021-33560.html", + "https://linux.oracle.com/errata/ELSA-2022-9263.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33560", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + ], + }, + "category": "Vulnerability", + "description": "Libgcrypt before 1.8.8 and 1.9.x before 1.9.3 mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm, and the window size is not chosen appropriately. This, for example, affects use of ElGamal in OpenPGP.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libgcrypt: mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33560", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5305", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5328", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T5466", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + }, + { + "type": "URL", + "value": "https://eprint.iacr.org/2021/923", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4409.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-33560.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9263.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-13", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5080-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5080-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33560", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-13627", + "installedVersion": "1.8.4-5", + "packageName": "libgcrypt20", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00060.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00018.html", + "http://www.openwall.com/lists/oss-security/2019/10/02/2", + "https://access.redhat.com/security/cve/CVE-2019-13627", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-13627", + "https://dev.gnupg.org/T4683", + "https://github.com/gpg/libgcrypt/releases/tag/libgcrypt-1.8.5", + "https://linux.oracle.com/cve/CVE-2019-13627.html", + "https://linux.oracle.com/errata/ELSA-2020-4482.html", + "https://lists.debian.org/debian-lts-announce/2019/09/msg00024.html", + "https://lists.debian.org/debian-lts-announce/2020/01/msg00001.html", + "https://minerva.crocs.fi.muni.cz/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-13627", + "https://security-tracker.debian.org/tracker/CVE-2019-13627", + "https://security.gentoo.org/glsa/202003-32", + "https://ubuntu.com/security/notices/USN-4236-1", + "https://ubuntu.com/security/notices/USN-4236-2", + "https://ubuntu.com/security/notices/USN-4236-3", + "https://usn.ubuntu.com/4236-1/", + "https://usn.ubuntu.com/4236-2/", + "https://usn.ubuntu.com/4236-3/", + "https://www.cve.org/CVERecord?id=CVE-2019-13627", + ], + }, + "category": "Vulnerability", + "description": "It was discovered that there was a ECDSA timing attack in the libgcrypt20 cryptographic library. Version affected: 1.8.4-5, 1.7.6-2+deb9u3, and 1.6.3-2+deb8u4. Versions fixed: 1.8.5-2 and 1.6.3-2+deb8u7.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libgcrypt: ECDSA timing attack allowing private key leak", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-13627", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00060.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00018.html", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2019/10/02/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-13627", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-13627", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/T4683", + }, + { + "type": "URL", + "value": "https://github.com/gpg/libgcrypt/releases/tag/libgcrypt-1.8.5", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-13627.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4482.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2019/09/msg00024.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2020/01/msg00001.html", + }, + { + "type": "URL", + "value": "https://minerva.crocs.fi.muni.cz/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-13627", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2019-13627", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202003-32", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4236-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4236-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4236-3", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4236-1/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4236-2/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4236-3/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-13627", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.8.4-5+deb10u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-40528", + "installedVersion": "1.8.4-5", + "packageName": "libgcrypt20", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:5311", + "https://access.redhat.com/security/cve/CVE-2021-40528", + "https://bugzilla.redhat.com/2002816", + "https://bugzilla.redhat.com/show_bug.cgi?id=2002816", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-40528", + "https://dev.gnupg.org/rCb118681ebc4c9ea4b9da79b0f9541405a64f4c13", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2022-5311.html", + "https://errata.rockylinux.org/RLSA-2022:5311", + "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=commit;h=3462280f2e23e16adf3ed5176e0f2413d8861320", + "https://ibm.github.io/system-security-research-updates/2021/07/20/insecurity-elgamal-pt1", + "https://ibm.github.io/system-security-research-updates/2021/09/06/insecurity-elgamal-pt2", + "https://linux.oracle.com/cve/CVE-2021-40528.html", + "https://linux.oracle.com/errata/ELSA-2022-9564.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-40528", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-40528", + ], + }, + "category": "Vulnerability", + "description": "The ElGamal implementation in Libgcrypt before 1.9.4 allows plaintext recovery because, during interaction between two cryptographic libraries, a certain dangerous combination of the prime defined by the receiver's public key, the generator defined by the receiver's public key, and the sender's ephemeral exponents can lead to a cross-configuration attack against OpenPGP.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "ElGamal implementation allows plaintext recovery", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-40528", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:5311", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-40528", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2002816", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2002816", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-40528", + }, + { + "type": "URL", + "value": "https://dev.gnupg.org/rCb118681ebc4c9ea4b9da79b0f9541405a64f4c13", + }, + { + "type": "URL", + "value": "https://eprint.iacr.org/2021/923", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2022-5311.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5311", + }, + { + "type": "URL", + "value": "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=commit;h=3462280f2e23e16adf3ed5176e0f2413d8861320", + }, + { + "type": "URL", + "value": "https://ibm.github.io/system-security-research-updates/2021/07/20/insecurity-elgamal-pt1", + }, + { + "type": "URL", + "value": "https://ibm.github.io/system-security-research-updates/2021/09/06/insecurity-elgamal-pt2", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-40528.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9564.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-40528", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-13", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5080-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5080-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-40528", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-6829", + "installedVersion": "1.8.4-5", + "packageName": "libgcrypt20", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-6829", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + "https://www.cve.org/CVERecord?id=CVE-2018-6829", + "https://www.oracle.com/security-alerts/cpujan2020.html", + ], + }, + "category": "Vulnerability", + "description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libgcrypt: ElGamal implementation doesn't have semantic security due to incorrectly encoded plaintexts possibly allowing to obtain sensitive information", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-6829", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-6829", + }, + { + "type": "URL", + "value": "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + }, + { + "type": "URL", + "value": "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + }, + { + "type": "URL", + "value": "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-6829", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2020.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "2:6.1.2+dfsg-4+deb10u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-43618", + "installedVersion": "2:6.1.2+dfsg-4", + "packageName": "libgmp10", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/8", + "http://www.openwall.com/lists/oss-security/2022/10/13/3", + "https://access.redhat.com/security/cve/CVE-2021-43618", + "https://bugs.debian.org/994405", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-43618", + "https://gmplib.org/list-archives/gmp-bugs/2021-September/005077.html", + "https://gmplib.org/repo/gmp-6.2/rev/561a9c25298e", + "https://lists.debian.org/debian-lts-announce/2021/12/msg00001.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43618", + "https://security.netapp.com/advisory/ntap-20221111-0001/", + "https://ubuntu.com/security/notices/USN-5672-1", + "https://ubuntu.com/security/notices/USN-5672-2", + "https://www.cve.org/CVERecord?id=CVE-2021-43618", + ], + }, + "category": "Vulnerability", + "description": "GNU Multiple Precision Arithmetic Library (GMP) through 6.2.1 has an mpz/inp_raw.c integer overflow and resultant buffer overflow via crafted input, leading to a segmentation fault on 32-bit platforms.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Integer overflow and resultant buffer overflow via crafted input", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-43618", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/8", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/10/13/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-43618", + }, + { + "type": "URL", + "value": "https://bugs.debian.org/994405", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-43618", + }, + { + "type": "URL", + "value": "https://gmplib.org/list-archives/gmp-bugs/2021-September/005077.html", + }, + { + "type": "URL", + "value": "https://gmplib.org/repo/gmp-6.2/rev/561a9c25298e", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/12/msg00001.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-43618", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221111-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5672-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5672-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-43618", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.6.7-4+deb10u7", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-20231", + "installedVersion": "3.6.7-4+deb10u6", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-20231", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://gitlab.com/gnutls/gnutls/-/issues/1151", + "https://linux.oracle.com/cve/CVE-2021-20231.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.apache.org/thread.html/r50661d6f0082709aad9a584431b59ec364f9974b63b07e0800230168@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5d4001031e7790d8c6396c499522b4ed2aab782da87b1a14184793bb@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5f88bed447742fcc5c47bf1c7be965ef450131914a6e1f85feba2779@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r6ac143ba6dd98bd4bf6bf010d46e56e254056459721ba18822d611f7@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r9cbc69e57276413788e90a6ee16c7c034ea4258d31935b70db2bd158@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rcd70a4c88a47a75fd2d5f3ffb7cee8c2a18c713320bd90fdcb57495f@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rf5e1256d870193def4a82ad89ab95e63943a313b5ff0d81aa87e4532@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rfd5273d72d244178441e6904a2f2b41a3268f569e8092ea0b3b2bb20@%3Cissues.spark.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OSLAE6PP33A7VYRYMYMUVB3U6B26GZER/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20231", + "https://security.netapp.com/advisory/ntap-20210416-0005/", + "https://ubuntu.com/security/notices/USN-5029-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20231", + "https://www.gnutls.org/security-new.html#GNUTLS-SA-2021-03-10", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in gnutls. A use after free issue in client sending key_share extension may lead to memory corruption and other consequences.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "gnutls: Use after free in client key_share extension", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-20231", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4451.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4451", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1151", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-20231.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9221.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r50661d6f0082709aad9a584431b59ec364f9974b63b07e0800230168@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r5d4001031e7790d8c6396c499522b4ed2aab782da87b1a14184793bb@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r5f88bed447742fcc5c47bf1c7be965ef450131914a6e1f85feba2779@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r6ac143ba6dd98bd4bf6bf010d46e56e254056459721ba18822d611f7@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r9cbc69e57276413788e90a6ee16c7c034ea4258d31935b70db2bd158@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rcd70a4c88a47a75fd2d5f3ffb7cee8c2a18c713320bd90fdcb57495f@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf5e1256d870193def4a82ad89ab95e63943a313b5ff0d81aa87e4532@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rfd5273d72d244178441e6904a2f2b41a3268f569e8092ea0b3b2bb20@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OSLAE6PP33A7VYRYMYMUVB3U6B26GZER/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210416-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5029-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://www.gnutls.org/security-new.html#GNUTLS-SA-2021-03-10", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.6.7-4+deb10u7", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-20232", + "installedVersion": "3.6.7-4+deb10u6", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-20232", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://gitlab.com/gnutls/gnutls/-/issues/1151", + "https://linux.oracle.com/cve/CVE-2021-20232.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.apache.org/thread.html/r50661d6f0082709aad9a584431b59ec364f9974b63b07e0800230168@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5d4001031e7790d8c6396c499522b4ed2aab782da87b1a14184793bb@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5f88bed447742fcc5c47bf1c7be965ef450131914a6e1f85feba2779@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r6ac143ba6dd98bd4bf6bf010d46e56e254056459721ba18822d611f7@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r9cbc69e57276413788e90a6ee16c7c034ea4258d31935b70db2bd158@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rcd70a4c88a47a75fd2d5f3ffb7cee8c2a18c713320bd90fdcb57495f@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rf5e1256d870193def4a82ad89ab95e63943a313b5ff0d81aa87e4532@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rfd5273d72d244178441e6904a2f2b41a3268f569e8092ea0b3b2bb20@%3Cissues.spark.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OSLAE6PP33A7VYRYMYMUVB3U6B26GZER/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20232", + "https://security.netapp.com/advisory/ntap-20210416-0005/", + "https://ubuntu.com/security/notices/USN-5029-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20232", + "https://www.gnutls.org/security-new.html#GNUTLS-SA-2021-03-10", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in gnutls. A use after free issue in client_send_params in lib/ext/pre_shared_key.c may lead to memory corruption and other potential consequences.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "gnutls: Use after free in client_send_params in lib/ext/pre_shared_key.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-20232", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4451.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4451", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1151", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-20232.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9221.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r50661d6f0082709aad9a584431b59ec364f9974b63b07e0800230168@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r5d4001031e7790d8c6396c499522b4ed2aab782da87b1a14184793bb@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r5f88bed447742fcc5c47bf1c7be965ef450131914a6e1f85feba2779@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r6ac143ba6dd98bd4bf6bf010d46e56e254056459721ba18822d611f7@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r9cbc69e57276413788e90a6ee16c7c034ea4258d31935b70db2bd158@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rcd70a4c88a47a75fd2d5f3ffb7cee8c2a18c713320bd90fdcb57495f@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf5e1256d870193def4a82ad89ab95e63943a313b5ff0d81aa87e4532@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rfd5273d72d244178441e6904a2f2b41a3268f569e8092ea0b3b2bb20@%3Cissues.spark.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OSLAE6PP33A7VYRYMYMUVB3U6B26GZER/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210416-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5029-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://www.gnutls.org/security-new.html#GNUTLS-SA-2021-03-10", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.6.7-4+deb10u7", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-24659", + "installedVersion": "3.6.7-4+deb10u6", + "packageName": "libgnutls30", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-10/msg00054.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-10/msg00060.html", + "https://access.redhat.com/security/cve/CVE-2020-24659", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-24659", + "https://gitlab.com/gnutls/gnutls/-/issues/1071", + "https://linux.oracle.com/cve/CVE-2020-24659.html", + "https://linux.oracle.com/errata/ELSA-2020-5483.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/62BUAI4FQQLG6VTKRT7SUZPGJJ4NASQ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AWN56FDLQQXT2D2YHNI4TYH432TDMQ7N/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-24659", + "https://security.gentoo.org/glsa/202009-01", + "https://security.netapp.com/advisory/ntap-20200911-0006/", + "https://ubuntu.com/security/notices/USN-4491-1", + "https://usn.ubuntu.com/4491-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-24659", + "https://www.gnutls.org/security-new.html#GNUTLS-SA-2020-09-04", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in GnuTLS before 3.6.15. A server can trigger a NULL pointer dereference in a TLS 1.3 client if a no_renegotiation alert is sent with unexpected timing, and then an invalid second handshake occurs. The crash happens in the application's error handling path, where the gnutls_deinit function is called after detecting a handshake failure.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "gnutls: Heap buffer overflow in handshake with no_renegotiation alert sent", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-24659", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-10/msg00054.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-10/msg00060.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-24659", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-24659", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1071", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-24659.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-5483.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/62BUAI4FQQLG6VTKRT7SUZPGJJ4NASQ3/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AWN56FDLQQXT2D2YHNI4TYH432TDMQ7N/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-24659", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202009-01", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200911-0006/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4491-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4491-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-24659", + }, + { + "type": "URL", + "value": "https://www.gnutls.org/security-new.html#GNUTLS-SA-2020-09-04", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.6.7-4+deb10u9", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2509", + "installedVersion": "3.6.7-4+deb10u6", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6854", + "https://access.redhat.com/security/cve/CVE-2022-2509", + "https://bugzilla.redhat.com/2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2076626", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108635", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2119770", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2509", + "https://errata.almalinux.org/9/ALSA-2022-6854.html", + "https://errata.rockylinux.org/RLSA-2022:6854", + "https://gnutls.org/security-new.html (GNUTLS-SA-2022-07-07)", + "https://gnutls.org/security-new.html#GNUTLS-SA-2022-07-07", + "https://linux.oracle.com/cve/CVE-2022-2509.html", + "https://linux.oracle.com/errata/ELSA-2022-7105.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00002.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6FL27JS3VM74YEQU7PGB62USO3KSBYZX/", + "https://lists.gnupg.org/pipermail/gnutls-help/2022-July/004746.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2509", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2509", + "https://www.debian.org/security/2022/dsa-5203", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability found in gnutls. This security flaw happens because of a double free error occurs during verification of pkcs7 signatures in gnutls_pkcs7_verify function.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Double free during gnutls_pkcs7_verify", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2509", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6854", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2108977", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2076626", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2108635", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2108977", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2119770", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6854.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:6854", + }, + { + "type": "URL", + "value": "https://gnutls.org/security-new.html (GNUTLS-SA-2022-07-07)", + }, + { + "type": "URL", + "value": "https://gnutls.org/security-new.html#GNUTLS-SA-2022-07-07", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2509.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-7105.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/08/msg00002.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6FL27JS3VM74YEQU7PGB62USO3KSBYZX/", + }, + { + "type": "URL", + "value": "https://lists.gnupg.org/pipermail/gnutls-help/2022-July/004746.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5550-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2509", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5203", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.6.7-4+deb10u10", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0361", + "installedVersion": "3.6.7-4+deb10u6", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:1141", + "https://access.redhat.com/security/cve/CVE-2023-0361", + "https://bugzilla.redhat.com/2162596", + "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + "https://errata.almalinux.org/9/ALSA-2023-1141.html", + "https://errata.rockylinux.org/RLSA-2023:1569", + "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + "https://gitlab.com/gnutls/gnutls/-/issues/1050", + "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + "https://linux.oracle.com/cve/CVE-2023-0361.html", + "https://linux.oracle.com/errata/ELSA-2023-1569.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + "https://security.netapp.com/advisory/ntap-20230324-0005/", + "https://ubuntu.com/security/notices/USN-5901-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0361", + ], + }, + "category": "Vulnerability", + "description": "A timing side-channel in the handling of RSA ClientKeyExchange messages was discovered in GnuTLS. This side-channel can be sufficient to recover the key encrypted in the RSA ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption the attacker would need to send a large amount of specially crafted messages to the vulnerable server. By recovering the secret from the ClientKeyExchange message, the attacker would be able to decrypt the application data exchanged over that connection.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "timing side-channel in the TLS RSA key exchange code", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0361", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:1141", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0361", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2162596", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-1141.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:1569", + }, + { + "type": "URL", + "value": "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1050", + }, + { + "type": "URL", + "value": "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0361.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-1569.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230324-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5901-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0361", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.6.7-4+deb10u9", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-4209", + "installedVersion": "3.6.7-4+deb10u6", + "packageName": "libgnutls30", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-4209", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044156", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-4209", + "https://gitlab.com/gnutls/gnutls/-/commit/3db352734472d851318944db13be73da61300568", + "https://gitlab.com/gnutls/gnutls/-/issues/1306", + "https://gitlab.com/gnutls/gnutls/-/merge_requests/1503", + "https://nvd.nist.gov/vuln/detail/CVE-2021-4209", + "https://security.netapp.com/advisory/ntap-20220915-0005/", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://ubuntu.com/security/notices/USN-5750-1", + "https://www.cve.org/CVERecord?id=CVE-2021-4209", + ], + }, + "category": "Vulnerability", + "description": "A NULL pointer dereference flaw was found in GnuTLS. As Nettle's hash update functions internally call memcpy, providing zero-length input may cause undefined behavior. This flaw leads to a denial of service after authentication in rare circumstances.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "GnuTLS: Null pointer dereference in MD_UPDATE", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-4209", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-4209", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2044156", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-4209", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/commit/3db352734472d851318944db13be73da61300568", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/issues/1306", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/gnutls/-/merge_requests/1503", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-4209", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220915-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5550-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5750-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-4209", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-3389", + "installedVersion": "3.6.7-4+deb10u6", + "packageName": "libgnutls30", + "references": [ + "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + "http://curl.haxx.se/docs/adv_20120124B.html", + "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + "http://ekoparty.org/2011/juliano-rizzo.php", + "http://eprint.iacr.org/2004/111", + "http://eprint.iacr.org/2006/136", + "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + "http://marc.info/?l=bugtraq&m=132750579901589&w=2", + "http://marc.info/?l=bugtraq&m=132872385320240&w=2", + "http://marc.info/?l=bugtraq&m=133365109612558&w=2", + "http://marc.info/?l=bugtraq&m=133728004526190&w=2", + "http://marc.info/?l=bugtraq&m=134254866602253&w=2", + "http://marc.info/?l=bugtraq&m=134254957702612&w=2", + "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + "http://osvdb.org/74829", + "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + "http://secunia.com/advisories/45791", + "http://secunia.com/advisories/47998", + "http://secunia.com/advisories/48256", + "http://secunia.com/advisories/48692", + "http://secunia.com/advisories/48915", + "http://secunia.com/advisories/48948", + "http://secunia.com/advisories/49198", + "http://secunia.com/advisories/55322", + "http://secunia.com/advisories/55350", + "http://secunia.com/advisories/55351", + "http://security.gentoo.org/glsa/glsa-201203-02.xml", + "http://security.gentoo.org/glsa/glsa-201406-32.xml", + "http://support.apple.com/kb/HT4999", + "http://support.apple.com/kb/HT5001", + "http://support.apple.com/kb/HT5130", + "http://support.apple.com/kb/HT5281", + "http://support.apple.com/kb/HT5501", + "http://support.apple.com/kb/HT6150", + "http://technet.microsoft.com/security/advisory/2588513", + "http://vnhacker.blogspot.com/2011/09/beast.html", + "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + "http://www.debian.org/security/2012/dsa-2398", + "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + "http://www.ibm.com/developerworks/java/jdk/alerts/", + "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + "http://www.insecure.cl/Beast-SSL.rar", + "http://www.kb.cert.org/vuls/id/864643", + "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + "http://www.opera.com/docs/changelogs/mac/1151/", + "http://www.opera.com/docs/changelogs/mac/1160/", + "http://www.opera.com/docs/changelogs/unix/1151/", + "http://www.opera.com/docs/changelogs/unix/1160/", + "http://www.opera.com/docs/changelogs/windows/1151/", + "http://www.opera.com/docs/changelogs/windows/1160/", + "http://www.opera.com/support/kb/view/1004/", + "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + "http://www.securityfocus.com/bid/49388", + "http://www.securityfocus.com/bid/49778", + "http://www.securitytracker.com/id/1029190", + "http://www.securitytracker.com/id?1025997", + "http://www.securitytracker.com/id?1026103", + "http://www.securitytracker.com/id?1026704", + "http://www.ubuntu.com/usn/USN-1263-1", + "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + "https://access.redhat.com/security/cve/CVE-2011-3389", + "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + "https://bugzilla.novell.com/show_bug.cgi?id=719047", + "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + "https://hermes.opensuse.org/messages/13154861", + "https://hermes.opensuse.org/messages/13155432", + "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + "https://linux.oracle.com/cve/CVE-2011-3389.html", + "https://linux.oracle.com/errata/ELSA-2011-1380.html", + "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + "https://ubuntu.com/security/notices/USN-1263-1", + "https://www.cve.org/CVERecord?id=CVE-2011-3389", + ], + }, + "category": "Vulnerability", + "description": "The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a "BEAST" attack.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-3389", + }, + { + "type": "URL", + "value": "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + }, + { + "type": "URL", + "value": "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + }, + { + "type": "URL", + "value": "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + }, + { + "type": "URL", + "value": "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + }, + { + "type": "URL", + "value": "http://curl.haxx.se/docs/adv_20120124B.html", + }, + { + "type": "URL", + "value": "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + }, + { + "type": "URL", + "value": "http://ekoparty.org/2011/juliano-rizzo.php", + }, + { + "type": "URL", + "value": "http://eprint.iacr.org/2004/111", + }, + { + "type": "URL", + "value": "http://eprint.iacr.org/2006/136", + }, + { + "type": "URL", + "value": "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + }, + { + "type": "URL", + "value": "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + }, + { + "type": "URL", + "value": "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=132750579901589&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=132872385320240&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=133365109612558&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=133728004526190&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=134254866602253&w=2", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=134254957702612&w=2", + }, + { + "type": "URL", + "value": "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + }, + { + "type": "URL", + "value": "http://osvdb.org/74829", + }, + { + "type": "URL", + "value": "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + }, + { + "type": "URL", + "value": "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/45791", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/47998", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48256", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48692", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48915", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/48948", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/49198", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/55322", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/55350", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/55351", + }, + { + "type": "URL", + "value": "http://security.gentoo.org/glsa/glsa-201203-02.xml", + }, + { + "type": "URL", + "value": "http://security.gentoo.org/glsa/glsa-201406-32.xml", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT4999", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5001", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5130", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5281", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT5501", + }, + { + "type": "URL", + "value": "http://support.apple.com/kb/HT6150", + }, + { + "type": "URL", + "value": "http://technet.microsoft.com/security/advisory/2588513", + }, + { + "type": "URL", + "value": "http://vnhacker.blogspot.com/2011/09/beast.html", + }, + { + "type": "URL", + "value": "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + }, + { + "type": "URL", + "value": "http://www.debian.org/security/2012/dsa-2398", + }, + { + "type": "URL", + "value": "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + }, + { + "type": "URL", + "value": "http://www.ibm.com/developerworks/java/jdk/alerts/", + }, + { + "type": "URL", + "value": "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + }, + { + "type": "URL", + "value": "http://www.insecure.cl/Beast-SSL.rar", + }, + { + "type": "URL", + "value": "http://www.kb.cert.org/vuls/id/864643", + }, + { + "type": "URL", + "value": "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/mac/1151/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/mac/1160/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/unix/1151/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/unix/1160/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/windows/1151/", + }, + { + "type": "URL", + "value": "http://www.opera.com/docs/changelogs/windows/1160/", + }, + { + "type": "URL", + "value": "http://www.opera.com/support/kb/view/1004/", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + }, + { + "type": "URL", + "value": "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + }, + { + "type": "URL", + "value": "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + }, + { + "type": "URL", + "value": "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/49388", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/49778", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id/1029190", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id?1025997", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id?1026103", + }, + { + "type": "URL", + "value": "http://www.securitytracker.com/id?1026704", + }, + { + "type": "URL", + "value": "http://www.ubuntu.com/usn/USN-1263-1", + }, + { + "type": "URL", + "value": "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2011-3389", + }, + { + "type": "URL", + "value": "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + }, + { + "type": "URL", + "value": "https://bugzilla.novell.com/show_bug.cgi?id=719047", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + }, + { + "type": "URL", + "value": "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + }, + { + "type": "URL", + "value": "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + }, + { + "type": "URL", + "value": "https://hermes.opensuse.org/messages/13154861", + }, + { + "type": "URL", + "value": "https://hermes.opensuse.org/messages/13155432", + }, + { + "type": "URL", + "value": "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2011-3389.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2011-1380.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + }, + { + "type": "URL", + "value": "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-1263-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2011-3389", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "3.4.1-1+deb10u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-20305", + "installedVersion": "3.4.1-1", + "packageName": "libhogweed4", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-20305", + "https://bugzilla.redhat.com/show_bug.cgi?id=1942533", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20305", + "https://linux.oracle.com/cve/CVE-2021-20305.html", + "https://linux.oracle.com/errata/ELSA-2021-1206.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MQKWVVMAIDAJ7YAA3VVO32BHLDOH2E63/", + "https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009457.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20305", + "https://security.gentoo.org/glsa/202105-31", + "https://security.netapp.com/advisory/ntap-20211022-0002/", + "https://ubuntu.com/security/notices/USN-4906-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20305", + "https://www.debian.org/security/2021/dsa-4933", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in Nettle in versions before 3.7.2, where several Nettle signature verification functions (GOST DSA, EDDSA & ECDSA) result in the Elliptic Curve Cryptography point (ECC) multiply function being called with out-of-range scalers, possibly resulting in incorrect results. This flaw allows an attacker to force an invalid signature, causing an assertion failure or possible validation. The highest threat to this vulnerability is to confidentiality, integrity, as well as system availability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "nettle: Out of bounds memory access in signature verification", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-20305", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1942533", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-20305.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-1206.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MQKWVVMAIDAJ7YAA3VVO32BHLDOH2E63/", + }, + { + "type": "URL", + "value": "https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009457.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202105-31", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211022-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4906-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4933", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.4.1-1+deb10u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3580", + "installedVersion": "3.4.1-1", + "packageName": "libhogweed4", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-3580", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://linux.oracle.com/cve/CVE-2021-3580.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3580", + "https://security.netapp.com/advisory/ntap-20211104-0006/", + "https://ubuntu.com/security/notices/USN-4990-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3580", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the way nettle's RSA decryption functions handled specially crafted ciphertext. An attacker could use this flaw to provide a manipulated ciphertext leading to application crash and denial of service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "nettle: Remote crash in RSA decryption via manipulated ciphertext", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3580", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4451.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4451", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3580.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9221.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211104-0006/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4990-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3580", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-12290", + "installedVersion": "2.0.5-1+deb10u1", + "packageName": "libidn2-0", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00008.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00009.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12290", + "https://gitlab.com/libidn/libidn2/commit/241e8f486134793cb0f4a5b0e5817a97883401f5", + "https://gitlab.com/libidn/libidn2/commit/614117ef6e4c60e1950d742e3edf0a0ef8d389de", + "https://gitlab.com/libidn/libidn2/merge_requests/71", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UFT76Y7OSGPZV3EBEHD6ISVUM3DLARM/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KXDKYWFV6N2HHVSE67FFDM7G3FEL2ZNE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ONG3GJRRJO35COPGVJXXSZLU4J5Y42AT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RSI4TI2JTQWQ3YEUX5X36GTVGKO4QKZ5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U6ZXL2RDNQRAHCMKWPOMJFKYJ344X4HL/", + "https://security.gentoo.org/glsa/202003-63", + "https://ubuntu.com/security/notices/USN-4168-1", + "https://usn.ubuntu.com/4168-1/", + ], + }, + "category": "Vulnerability", + "description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specifi ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-12290", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00008.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00009.html", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12290", + }, + { + "type": "URL", + "value": "https://gitlab.com/libidn/libidn2/commit/241e8f486134793cb0f4a5b0e5817a97883401f5", + }, + { + "type": "URL", + "value": "https://gitlab.com/libidn/libidn2/commit/614117ef6e4c60e1950d742e3edf0a0ef8d389de", + }, + { + "type": "URL", + "value": "https://gitlab.com/libidn/libidn2/merge_requests/71", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UFT76Y7OSGPZV3EBEHD6ISVUM3DLARM/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KXDKYWFV6N2HHVSE67FFDM7G3FEL2ZNE/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ONG3GJRRJO35COPGVJXXSZLU4J5Y42AT/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RSI4TI2JTQWQ3YEUX5X36GTVGKO4QKZ5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U6ZXL2RDNQRAHCMKWPOMJFKYJ344X4HL/", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202003-63", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4168-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4168-1/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "libip4tc2", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-11360", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "libip4tc2", + "references": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360", + ], + }, + "category": "Vulnerability", + "description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "iptables: buffer overflow in iptables-restore", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-11360", + }, + { + "type": "URL", + "value": "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-11360", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "libip6tc2", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-11360", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "libip6tc2", + "references": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360", + ], + }, + "category": "Vulnerability", + "description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "iptables: buffer overflow in iptables-restore", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-11360", + }, + { + "type": "URL", + "value": "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-11360", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.8.3-1+deb10u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3520", + "installedVersion": "1.8.3-1", + "packageName": "liblz4-1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-3520", + "https://bugzilla.redhat.com/show_bug.cgi?id=1954559", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3520", + "https://errata.almalinux.org/8/ALSA-2021-2575.html", + "https://errata.rockylinux.org/RLSA-2021:2575", + "https://github.com/lz4/lz4/pull/972", + "https://linux.oracle.com/cve/CVE-2021-3520.html", + "https://linux.oracle.com/errata/ELSA-2021-2575.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3520", + "https://security.netapp.com/advisory/ntap-20211104-0005/", + "https://ubuntu.com/security/notices/USN-4968-1", + "https://ubuntu.com/security/notices/USN-4968-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3520", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + ], + }, + "category": "Vulnerability", + "description": "There's a flaw in lz4. An attacker who submits a crafted file to an application linked with lz4 may be able to trigger an integer overflow, leading to calling of memmove() on a negative size argument, causing an out-of-bounds write and/or a crash. The greatest impact of this flaw is to availability, with some potential impact to confidentiality and integrity as well.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "memory corruption due to an integer overflow bug caused by memmove argument", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3520", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3520", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1954559", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3520", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-2575.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:2575", + }, + { + "type": "URL", + "value": "https://github.com/lz4/lz4/pull/972", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3520.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-2575.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3520", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211104-0005/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4968-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4968-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3520", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-17543", + "installedVersion": "1.8.3-1", + "packageName": "liblz4-1", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00069.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00070.html", + "https://access.redhat.com/security/cve/CVE-2019-17543", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=15941", + "https://github.com/lz4/lz4/compare/v1.9.1...v1.9.2", + "https://github.com/lz4/lz4/issues/801", + "https://github.com/lz4/lz4/pull/756", + "https://github.com/lz4/lz4/pull/760", + "https://lists.apache.org/thread.html/25015588b770d67470b7ba7ea49a305d6735dd7f00eabe7d50ec1e17@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/543302d55e2d2da4311994e9b0debdc676bf3fd05e1a2be3407aa2d6@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/793012683dc0fa6819b7c2560e6cf990811014c40c7d75412099c357@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/9ff0606d16be2ab6a81619e1c9e23c3e251756638e36272c8c8b7fa3@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/f0038c4fab2ee25aee849ebeff6b33b3aa89e07ccfb06b5c87b36316@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/f506bc371d4a068d5d84d7361293568f61167d3a1c3e91f0def2d7d3@%3Cdev.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/r0fb226357e7988a241b06b93bab065bcea2eb38658b382e485960e26@%3Cissues.kudu.apache.org%3E", + "https://lists.apache.org/thread.html/r4068ba81066792f2b4d208b39c4c4713c5d4c79bd8cb6c1904af5720@%3Cissues.kudu.apache.org%3E", + "https://lists.apache.org/thread.html/r7bc72200f94298bc9a0e35637f388deb53467ca4b2e2ad1ff66d8960@%3Cissues.kudu.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-17543", + "https://security.netapp.com/advisory/ntap-20210723-0001/", + "https://www.cve.org/CVERecord?id=CVE-2019-17543", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuoct2020.html", + ], + }, + "category": "Vulnerability", + "description": "LZ4 before 1.9.2 has a heap-based buffer overflow in LZ4_write32 (related to LZ4_compress_destSize), affecting applications that call LZ4_compress_fast with a large input. (This issue can also lead to data corruption.) NOTE: the vendor states "only a few specific / uncommon usages of the API are at risk."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "lz4: heap-based buffer overflow in LZ4_write32", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-17543", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00069.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00070.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-17543", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=15941", + }, + { + "type": "URL", + "value": "https://github.com/lz4/lz4/compare/v1.9.1...v1.9.2", + }, + { + "type": "URL", + "value": "https://github.com/lz4/lz4/issues/801", + }, + { + "type": "URL", + "value": "https://github.com/lz4/lz4/pull/756", + }, + { + "type": "URL", + "value": "https://github.com/lz4/lz4/pull/760", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/25015588b770d67470b7ba7ea49a305d6735dd7f00eabe7d50ec1e17@%3Cissues.arrow.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/543302d55e2d2da4311994e9b0debdc676bf3fd05e1a2be3407aa2d6@%3Cissues.arrow.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/793012683dc0fa6819b7c2560e6cf990811014c40c7d75412099c357@%3Cissues.arrow.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/9ff0606d16be2ab6a81619e1c9e23c3e251756638e36272c8c8b7fa3@%3Cissues.arrow.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/f0038c4fab2ee25aee849ebeff6b33b3aa89e07ccfb06b5c87b36316@%3Cissues.arrow.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/f506bc371d4a068d5d84d7361293568f61167d3a1c3e91f0def2d7d3@%3Cdev.arrow.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r0fb226357e7988a241b06b93bab065bcea2eb38658b382e485960e26@%3Cissues.kudu.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r4068ba81066792f2b4d208b39c4c4713c5d4c79bd8cb6c1904af5720@%3Cissues.kudu.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r7bc72200f94298bc9a0e35637f388deb53467ca4b2e2ad1ff66d8960@%3Cissues.kudu.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-17543", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210723-0001/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-17543", + }, + { + "type": "URL", + "value": "https://www.oracle.com//security-alerts/cpujul2021.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2020.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "5.2.4-1+deb10u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1271", + "installedVersion": "5.2.4-1", + "packageName": "liblzma5", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8", + ], + }, + "category": "Vulnerability", + "description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "arbitrary-file-write vulnerability", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1271", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:4940", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2073310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-4940.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:4940", + }, + { + "type": "URL", + "value": "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1271.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-5052.html", + }, + { + "type": "URL", + "value": "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-01", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220930-0006/", + }, + { + "type": "URL", + "value": "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5378-4", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1271", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/04/07/8", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.4.1-1+deb10u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-20305", + "installedVersion": "3.4.1-1", + "packageName": "libnettle6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-20305", + "https://bugzilla.redhat.com/show_bug.cgi?id=1942533", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20305", + "https://linux.oracle.com/cve/CVE-2021-20305.html", + "https://linux.oracle.com/errata/ELSA-2021-1206.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MQKWVVMAIDAJ7YAA3VVO32BHLDOH2E63/", + "https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009457.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20305", + "https://security.gentoo.org/glsa/202105-31", + "https://security.netapp.com/advisory/ntap-20211022-0002/", + "https://ubuntu.com/security/notices/USN-4906-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20305", + "https://www.debian.org/security/2021/dsa-4933", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in Nettle in versions before 3.7.2, where several Nettle signature verification functions (GOST DSA, EDDSA & ECDSA) result in the Elliptic Curve Cryptography point (ECC) multiply function being called with out-of-range scalers, possibly resulting in incorrect results. This flaw allows an attacker to force an invalid signature, causing an assertion failure or possible validation. The highest threat to this vulnerability is to confidentiality, integrity, as well as system availability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "nettle: Out of bounds memory access in signature verification", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-20305", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1942533", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-20305.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-1206.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MQKWVVMAIDAJ7YAA3VVO32BHLDOH2E63/", + }, + { + "type": "URL", + "value": "https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009457.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202105-31", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211022-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4906-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-20305", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4933", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "3.4.1-1+deb10u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3580", + "installedVersion": "3.4.1-1", + "packageName": "libnettle6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-3580", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://linux.oracle.com/cve/CVE-2021-3580.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3580", + "https://security.netapp.com/advisory/ntap-20211104-0006/", + "https://ubuntu.com/security/notices/USN-4990-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3580", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the way nettle's RSA decryption functions handled specially crafted ciphertext. An attacker could use this flaw to provide a manipulated ciphertext leading to application crash and denial of service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "nettle: Remote crash in RSA decryption via manipulated ciphertext", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3580", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4451.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4451", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3580.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9221.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3580", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211104-0006/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4990-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3580", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-14155", + "installedVersion": "2:8.39-12", + "packageName": "libpcre3", + "references": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://about.gitlab.com/releases/2020/07/01/security-release-13-1-2-release/", + "https://access.redhat.com/security/cve/CVE-2020-14155", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2020-14155.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2020-14155", + "https://security.netapp.com/advisory/ntap-20221028-0010/", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2020-14155", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.pcre.org/original/changelog.txt", + ], + }, + "category": "Vulnerability", + "description": "libpcre in PCRE before 8.44 allows an integer overflow via a large number after a (?C substring.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "pcre: Integer overflow when parsing callout numeric arguments", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-14155", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2020/Dec/32", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/Feb/14", + }, + { + "type": "URL", + "value": "https://about.gitlab.com/releases/2020/07/01/security-release-13-1-2-release/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/717920", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4373", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-14155.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221028-0010/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT211931", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212147", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5425-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.pcre.org/original/changelog.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-11164", + "installedVersion": "2:8.39-12", + "packageName": "libpcre3", + "references": [ + "http://openwall.com/lists/oss-security/2017/07/11/3", + "http://www.openwall.com/lists/oss-security/2023/04/11/1", + "http://www.openwall.com/lists/oss-security/2023/04/12/1", + "http://www.securityfocus.com/bid/99575", + "https://access.redhat.com/security/cve/CVE-2017-11164", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + "https://www.cve.org/CVERecord?id=CVE-2017-11164", + ], + }, + "category": "Vulnerability", + "description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-11164", + }, + { + "type": "URL", + "value": "http://openwall.com/lists/oss-security/2017/07/11/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/11/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/12/1", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/99575", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-11164", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-16231", + "installedVersion": "2:8.39-12", + "packageName": "libpcre3", + "references": [ + "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + "http://seclists.org/fulldisclosure/2018/Dec/33", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101688", + "https://access.redhat.com/security/cve/CVE-2017-16231", + "https://bugs.exim.org/show_bug.cgi?id=2047", + "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + "https://www.cve.org/CVERecord?id=CVE-2017-16231", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-16231", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2018/Dec/33", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/11", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/7", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2017/11/01/8", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/101688", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-16231", + }, + { + "type": "URL", + "value": "https://bugs.exim.org/show_bug.cgi?id=2047", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-16231", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-7245", + "installedVersion": "2:8.39-12", + "packageName": "libpcre3", + "references": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7245", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7245", + ], + }, + "category": "Vulnerability", + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-7245", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/97067", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2018:2486", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-7245", + }, + { + "type": "URL", + "value": "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201710-25", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-7245", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2017-7246", + "installedVersion": "2:8.39-12", + "packageName": "libpcre3", + "references": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7246", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7246", + ], + }, + "category": "Vulnerability", + "description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2017-7246", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/97067", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2018:2486", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2017-7246", + }, + { + "type": "URL", + "value": "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201710-25", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2017-7246", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-20838", + "installedVersion": "2:8.39-12", + "packageName": "libpcre3", + "references": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://access.redhat.com/security/cve/CVE-2019-20838", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2019-20838.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2019-20838", + "https://www.pcre.org/original/changelog.txt", + ], + }, + "category": "Vulnerability", + "description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "pcre: Buffer over-read in JIT when UTF is disabled and \\X or \\R has fixed quantifier greater than 1", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-20838", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2020/Dec/32", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2021/Feb/14", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/717920", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4373", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-20838.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4373.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT211931", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT212147", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5425-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-20838", + }, + { + "type": "URL", + "value": "https://www.pcre.org/original/changelog.txt", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-9893", + "installedVersion": "2.3.3-4", + "packageName": "libseccomp2", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00022.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00027.html", + "http://www.paul-moore.com/blog/d/2019/03/libseccomp_v240.html", + "https://access.redhat.com/errata/RHSA-2019:3624", + "https://access.redhat.com/security/cve/CVE-2019-9893", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-9893", + "https://github.com/seccomp/libseccomp/issues/139", + "https://linux.oracle.com/cve/CVE-2019-9893.html", + "https://linux.oracle.com/errata/ELSA-2019-3624.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9893", + "https://seclists.org/oss-sec/2019/q1/179", + "https://security.gentoo.org/glsa/201904-18", + "https://ubuntu.com/security/notices/USN-4001-1", + "https://ubuntu.com/security/notices/USN-4001-2", + "https://usn.ubuntu.com/4001-1/", + "https://usn.ubuntu.com/4001-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-9893", + "https://www.openwall.com/lists/oss-security/2019/03/15/1", + ], + }, + "category": "Vulnerability", + "description": "libseccomp before 2.4.0 did not correctly generate 64-bit syscall argument comparisons using the arithmetic operators (LT, GT, LE, GE), which might able to lead to bypassing seccomp filters and potential privilege escalations.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libseccomp: incorrect generation of syscall filters in libseccomp", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-9893", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00022.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00027.html", + }, + { + "type": "URL", + "value": "http://www.paul-moore.com/blog/d/2019/03/libseccomp_v240.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2019:3624", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-9893", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-9893", + }, + { + "type": "URL", + "value": "https://github.com/seccomp/libseccomp/issues/139", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-9893.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2019-3624.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-9893", + }, + { + "type": "URL", + "value": "https://seclists.org/oss-sec/2019/q1/179", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201904-18", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4001-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4001-2", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4001-1/", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4001-2/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-9893", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2019/03/15/1", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36084", + "installedVersion": "2.8-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36084", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + "https://linux.oracle.com/cve/CVE-2021-36084.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36084", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libsepol: use-after-free in __cil_verify_classperms()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36084", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36084.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36084", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36085", + "installedVersion": "2.8-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36085", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + "https://linux.oracle.com/cve/CVE-2021-36085.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36085", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libsepol: use-after-free in __cil_verify_classperms()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36085", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36085.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36085", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36086", + "installedVersion": "2.8-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36086", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + "https://linux.oracle.com/cve/CVE-2021-36086.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36086", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "use-after-free in cil_reset_classpermission()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36086", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36086.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36086", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-36087", + "installedVersion": "2.8-1", + "packageName": "libsepol1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-36087", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + "https://linux.oracle.com/cve/CVE-2021-36087.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36087", + ], + }, + "category": "Vulnerability", + "description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libsepol: heap-based buffer overflow in ebitmap_match_any()", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-36087", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2021:4513", + }, + { + "type": "URL", + "value": "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + }, + { + "type": "URL", + "value": "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-36087.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4513.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + }, + { + "type": "URL", + "value": "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5391-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-36087", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1.1.1d-0+deb10u7", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3711", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/security/cve/CVE-2021-3711", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3711", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + "https://github.com/advisories/GHSA-5ww6-px42-wc85", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + "https://rustsec.org/advisories/RUSTSEC-2021-0097.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://security.netapp.com/advisory/ntap-20211022-0003/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3711", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02", + ], + }, + "category": "Vulnerability", + "description": "In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the "out" parameter can be NULL and, on exit, the "outlen" parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the "out" parameter. A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small. A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer by up to a maximum of 62 bytes altering the contents of other data held after the buffer, possibly changing application behaviour or causing the application to crash. The location of the buffer is application dependent but is typically heap allocated. Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "openssl: SM2 Decryption Buffer Overflow", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3711", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/26/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-5ww6-px42-wc85", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0097.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-02", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210827-0010/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211022-0003/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3711", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4963", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210824.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-16", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-02", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-1292", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-1292", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-953464.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1ad73b4d27bd8c1b369a3cd453681d3a4f1bb9b2", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=548d3f280a6e737673f5b61fce24bb100108dfeb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e5fd1728ef4c7a5bf7c7a7163ca60370460a6e23", + "https://linux.oracle.com/cve/CVE-2022-1292.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VX4KWHPMKYJL6ZLW4M5IU7E5UV5ZWJQU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNU5M7BXMML26G3GPYKFGQYPQDRSNKDD/", + "https://mta.openssl.org/pipermail/openssl-announce/2022-May/000224.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1292", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0011", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220602-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://ubuntu.com/security/notices/USN-5402-1", + "https://ubuntu.com/security/notices/USN-5402-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1292", + "https://www.debian.org/security/2022/dsa-5139", + "https://www.openssl.org/news/secadv/20220503.txt", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "The c_rehash script does not properly sanitise shell metacharacters to prevent command injection. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.3 (Affected 3.0.0,3.0.1,3.0.2). Fixed in OpenSSL 1.1.1o (Affected 1.1.1-1.1.1n). Fixed in OpenSSL 1.0.2ze (Affected 1.0.2-1.0.2zd).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "c_rehash script allows command injection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-1292", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-953464.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1ad73b4d27bd8c1b369a3cd453681d3a4f1bb9b2", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=548d3f280a6e737673f5b61fce24bb100108dfeb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e5fd1728ef4c7a5bf7c7a7163ca60370460a6e23", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-1292.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/05/msg00019.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VX4KWHPMKYJL6ZLW4M5IU7E5UV5ZWJQU/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNU5M7BXMML26G3GPYKFGQYPQDRSNKDD/", + }, + { + "type": "URL", + "value": "https://mta.openssl.org/pipermail/openssl-announce/2022-May/000224.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0011", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220602-0009/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0004/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5402-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5402-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5139", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220503.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u3", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2068", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2068", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c9c35870601b4a44d86ddbf512b38df38285cfa", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7a9c027159fe9e1bbc2cd38a8a2914bff0d5abd9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9639817dac8bbbaa64d09efad7464ccc405527c7", + "https://linux.oracle.com/cve/CVE-2022-2068.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6WZZBKUHQFGSKGNXXKICSRPL7AMVW5M5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2068", + "https://security.netapp.com/advisory/ntap-20220707-0008/", + "https://ubuntu.com/security/notices/USN-5488-1", + "https://ubuntu.com/security/notices/USN-5488-2", + "https://www.cve.org/CVERecord?id=CVE-2022-2068", + "https://www.debian.org/security/2022/dsa-5169", + "https://www.openssl.org/news/secadv/20220621.txt", + ], + }, + "category": "Vulnerability", + "description": "In addition to the c_rehash shell command injection identified in CVE-2022-1292, further circumstances where the c_rehash script does not properly sanitise shell metacharacters to prevent command injection were found by code review. When the CVE-2022-1292 was fixed it was not discovered that there are other places in the script where the file names of certificates being hashed were possibly passed to a command executed through the shell. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.4 (Affected 3.0.0,3.0.1,3.0.2,3.0.3). Fixed in OpenSSL 1.1.1p (Affected 1.1.1-1.1.1o). Fixed in OpenSSL 1.0.2zf (Affected 1.0.2-1.0.2ze).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "the c_rehash script allows command injection", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2068", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c9c35870601b4a44d86ddbf512b38df38285cfa", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7a9c027159fe9e1bbc2cd38a8a2914bff0d5abd9", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9639817dac8bbbaa64d09efad7464ccc405527c7", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2068.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6WZZBKUHQFGSKGNXXKICSRPL7AMVW5M5/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220707-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5488-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5488-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5169", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220621.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1d-0+deb10u7", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3712", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3712.json", + "https://access.redhat.com/security/cve/CVE-2021-3712", + "https://cert-portal.siemens.com/productcert/pdf/ssa-244969.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3712", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=94d23fcff9b2a7a8368dfe52214d5c2569882c11", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + "https://github.com/advisories/GHSA-q9wj-f4qw-6vfj", + "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-3712.html", + "https://linux.oracle.com/errata/ELSA-2022-9023.html", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00014.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", + "https://rustsec.org/advisories/RUSTSEC-2021-0098.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://ubuntu.com/security/notices/USN-5051-2", + "https://ubuntu.com/security/notices/USN-5051-3", + "https://ubuntu.com/security/notices/USN-5051-4 (regression only in trusty/esm)", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3712", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02", + ], + }, + "category": "Vulnerability", + "description": "ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own "d2i" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the "data" and "length" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though this is not guaranteed for strings that have been directly constructed. Where an application requests an ASN.1 structure to be printed, and where that ASN.1 structure contains ASN1_STRINGs that have been directly constructed by the application without NUL terminating the "data" field, then a read buffer overrun can occur. The same thing can also occur during name constraints processing of certificates (for example if a certificate has been directly constructed by the application instead of loading it via the OpenSSL parsing functions, and the certificate contains non NUL terminated ASN1_STRING structures). It can also occur in the X509_get1_email(), X509_REQ_get1_email() and X509_get1_ocsp() functions. If a malicious actor can cause an application to directly construct an ASN1_STRING and then process it through one of the affected OpenSSL functions then this issue could be hit. This might result in a crash (causing a Denial of Service attack). It could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext). Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k). Fixed in OpenSSL 1.0.2za (Affected 1.0.2-1.0.2y).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "openssl: Read buffer overruns processing ASN.1 strings", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3712", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/26/2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3712.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-244969.pdf", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=94d23fcff9b2a7a8368dfe52214d5c2569882c11", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-q9wj-f4qw-6vfj", + }, + { + "type": "URL", + "value": "https://kc.mcafee.com/corporate/index?page=content&id=SB10366", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-3712.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9023.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00014.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2021/09/msg00021.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2021-0098.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202209-02", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210827-0010/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-3", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5051-4 (regression only in trusty/esm)", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5088-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3712", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4963", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20210824.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujan2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuoct2021.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2021-16", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-02", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1d-0+deb10u8", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-0778", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "http://packetstormsecurity.com/files/167344/OpenSSL-1.0.2-1.1.1-3.0-BN_mod_sqrt-Infinite-Loop.html", + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "https://access.redhat.com/errata/RHSA-2022:5326", + "https://access.redhat.com/security/cve/CVE-2022-0778", + "https://bugzilla.redhat.com/2062202", + "https://bugzilla.redhat.com/show_bug.cgi?id=2062202", + "https://cert-portal.siemens.com/productcert/pdf/ssa-712929.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0778", + "https://errata.almalinux.org/8/ALSA-2022-5326.html", + "https://errata.rockylinux.org/RLSA-2022:4899", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3118eb64934499d93db3230748a452351d1d9a65", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=380085481c64de749a6dd25cdf0bcf4360b30f83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a466912611aa6cbdf550cd10601390e587451246", + "https://github.com/advisories/GHSA-x3mh-jvjw-3xwx", + "https://linux.oracle.com/cve/CVE-2022-0778.html", + "https://linux.oracle.com/errata/ELSA-2022-9272.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00024.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/323SNN6ZX7PRJJWP2BUAFLPUAE42XWLZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GDB3GQVJPXJE7X5C5JN6JAA4XUDWD6E6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W6K3PR542DXWLEFFMFIDMME4CWMHJRMG/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0002", + "https://rustsec.org/advisories/RUSTSEC-2022-0014.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220321-0002/", + "https://security.netapp.com/advisory/ntap-20220429-0005/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5328-1", + "https://ubuntu.com/security/notices/USN-5328-2", + "https://www.cve.org/CVERecord?id=CVE-2022-0778", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220315.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.tenable.com/security/tns-2022-06", + "https://www.tenable.com/security/tns-2022-07", + "https://www.tenable.com/security/tns-2022-08", + "https://www.tenable.com/security/tns-2022-09", + ], + }, + "category": "Vulnerability", + "description": "The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "openssl: Infinite loop in BN_mod_sqrt() reachable when parsing certificates", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-0778", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/167344/OpenSSL-1.0.2-1.1.1-3.0-BN_mod_sqrt-Infinite-Loop.html", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/33", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/35", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/38", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:5326", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2062202", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2062202", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-712929.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/8/ALSA-2022-5326.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:4899", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3118eb64934499d93db3230748a452351d1d9a65", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=380085481c64de749a6dd25cdf0bcf4360b30f83", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a466912611aa6cbdf550cd10601390e587451246", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-x3mh-jvjw-3xwx", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-0778.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9272.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/03/msg00024.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/323SNN6ZX7PRJJWP2BUAFLPUAE42XWLZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GDB3GQVJPXJE7X5C5JN6JAA4XUDWD6E6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W6K3PR542DXWLEFFMFIDMME4CWMHJRMG/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0002", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2022-0014.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220321-0002/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220429-0005/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213255", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213256", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213257", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5328-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5328-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-0778", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5103", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220315.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-06", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-07", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-08", + }, + { + "type": "URL", + "value": "https://www.tenable.com/security/tns-2022-09", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u4", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4450", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (e.g. "CERTIFICATE"), any header data and the payload data. If the function succeeds then the "name_out", "header" and "data" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "double free after calling PEM_read_bio_ex", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4450", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4450.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u4", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0215", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "The public API function BIO_new_NDEF is a helper function used for streaming +ASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the +SMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by +end user applications. + +The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter +BIO onto the front of it to form a BIO chain, and then returns the new head of +the BIO chain to the caller. Under certain conditions, for example if a CMS +recipient public key is invalid, the new filter BIO is freed and the function +returns a NULL result indicating a failure. However, in this case, the BIO chain +is not properly cleaned up and the BIO passed by the caller still retains +internal pointers to the previously freed filter BIO. If the caller then goes on +to call BIO_pop() on the BIO then a use-after-free will occur. This will most +likely result in a crash. + + + +This scenario occurs directly in the internal function B64_write_ASN1() which +may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on +the BIO. This internal function is in turn called by the public API functions +PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, +SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. + +Other public API functions that may be impacted by this include +i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and +i2d_PKCS7_bio_stream. + +The OpenSSL cms and smime command line applications are similarly affected. + + + +", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "use-after-free following BIO_new_NDEF", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0215", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0215.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0007/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0009/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u4", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0286", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "X.400 address type confusion in X.509 GeneralName", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2023-0286", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + }, + { + "type": "URL", + "value": "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0286.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5845-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u5", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0464", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://linux.oracle.com/cve/CVE-2023-0464.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt", + ], + }, + "category": "Vulnerability", + "description": "A security vulnerability has been identified in all supported versions + +of OpenSSL related to the verification of X.509 certificate chains +that include policy constraints. Attackers may be able to exploit this +vulnerability by creating a malicious certificate chain that triggers +exponential use of computational resources, leading to a denial-of-service +(DoS) attack on affected systems. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0464", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0464.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0464", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230322.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u5", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-2650", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://linux.oracle.com/cve/CVE-2023-2650.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://ubuntu.com/security/notices/USN-6188-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt", + ], + }, + "category": "Vulnerability", + "description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or +data containing them may be very slow. + +Impact summary: Applications that use OBJ_obj2txt() directly, or use any of +the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message +size limit may experience notable to very long delays when processing those +messages, which may lead to a Denial of Service. + +An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - +most of which have no size limit. OBJ_obj2txt() may be used to translate +an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL +type ASN1_OBJECT) to its canonical numeric text form, which are the +sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by +periods. + +When one of the sub-identifiers in the OBJECT IDENTIFIER is very large +(these are sizes that are seen as absurdly large, taking up tens or hundreds +of KiBs), the translation to a decimal number in text may take a very long +time. The time complexity is O(n^2) with 'n' being the size of the +sub-identifiers in bytes (*). + +With OpenSSL 3.0, support to fetch cryptographic algorithms using names / +identifiers in string form was introduced. This includes using OBJECT +IDENTIFIERs in canonical numeric text form as identifiers for fetching +algorithms. + +Such OBJECT IDENTIFIERs may be received through the ASN.1 structure +AlgorithmIdentifier, which is commonly used in multiple protocols to specify +what cryptographic algorithm should be used to sign or verify, encrypt or +decrypt, or digest passed data. + +Applications that call OBJ_obj2txt() directly with untrusted data are +affected, with any version of OpenSSL. If the use is for the mere purpose +of display, the severity is considered low. + +In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, +CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 +certificates, including simple things like verifying its signature. + +The impact on TLS is relatively low, because all versions of OpenSSL have a +100KiB limit on the peer's certificate chain. Additionally, this only +impacts clients, or servers that have explicitly enabled client +authentication. + +In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, +such as X.509 certificates. This is assumed to not happen in such a way +that it would cause a Denial of Service, so these versions are considered +not affected by this issue in such a way that it would be cause for concern, +and the severity is therefore considered low.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Possible DoS translating ASN.1 object identifiers", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-2650", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/30/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-2650.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6119-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6188-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-2650", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230530.txt", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1.1.1d-0+deb10u8", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-4160", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-4160", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3bf7b73ea7123045b8f972badc67ed6878e6c37f", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6fc1aaaf303185aa5e483e06bdfae16daa9193a7", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e9e726506cd2a3fd9c0f12daf8cc1fe934c7dddb", + "https://nvd.nist.gov/vuln/detail/CVE-2021-4160", + "https://security.gentoo.org/glsa/202210-02", + "https://www.cve.org/CVERecord?id=CVE-2021-4160", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220128.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "There is a carry propagation bug in the MIPS32 and MIPS64 squaring procedure. Many EC algorithms are affected, including some of the TLS 1.3 default curves. Impact was not analyzed in detail, because the pre-requisites for attack are considered unlikely and include reusing private keys. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be significant. However, for an attack on TLS to be meaningful, the server would have to share the DH private key among multiple clients, which is no longer an option since CVE-2016-0701. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0.0. It was addressed in the releases of 1.1.1m and 3.0.1 on the 15th of December 2021. For the 1.0.2 release it is addressed in git commit 6fc1aaaf3 that is available to premium support customers only. It will be made available in 1.0.2zc when it is released. The issue only affects OpenSSL on MIPS platforms. Fixed in OpenSSL 3.0.1 (Affected 3.0.0). Fixed in OpenSSL 1.1.1m (Affected 1.1.1-1.1.1l). Fixed in OpenSSL 1.0.2zc-dev (Affected 1.0.2-1.0.2zb).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "openssl: Carry propagation bug in the MIPS32 and MIPS64 squaring procedure", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-4160", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-4160", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3bf7b73ea7123045b8f972badc67ed6878e6c37f", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6fc1aaaf303185aa5e483e06bdfae16daa9193a7", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e9e726506cd2a3fd9c0f12daf8cc1fe934c7dddb", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-4160", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-4160", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5103", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220128.txt", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpuapr2022.html", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u4", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-2097", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt", + ], + }, + "category": "Vulnerability", + "description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of "in place" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "AES OCB fails to encrypt some bytes", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-2097", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:6224", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087911", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2087913", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2104905", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-6224.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:5818", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-2097.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9751.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-02", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220715-0011/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230420-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5502-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-2097", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5343", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20220705.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u4", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4304", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt", + ], + }, + "category": "Vulnerability", + "description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "timing attack in RSA Decryption implementation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4304", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:2165", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/1960321", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-2165.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0946", + }, + { + "type": "URL", + "value": "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4304.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-2932.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5844-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4304", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230207.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u5", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0465", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://linux.oracle.com/cve/CVE-2023-0465.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "Applications that use a non-default option when verifying certificates may be +vulnerable to an attack from a malicious CA to circumvent certain checks. + +Invalid certificate policies in leaf certificates are silently ignored by +OpenSSL and other certificate policy checks are skipped for that certificate. +A malicious CA could use this to deliberately assert invalid certificate policies +in order to circumvent policy checking on the certificate altogether. + +Policy processing is disabled by default but can be enabled by passing +the \`-policy' argument to the command line utilities or by calling the +\`X509_VERIFY_PARAM_set1_policies()' function.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Invalid certificate policies in leaf certificates are silently ignored", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0465", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0465.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0465", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": "1.1.1n-0+deb10u5", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-0466", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://linux.oracle.com/cve/CVE-2023-0466.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt", + ], + }, + "category": "Vulnerability", + "description": "The function X509_VERIFY_PARAM_add0_policy() is documented to +implicitly enable the certificate policy check when doing certificate +verification. However the implementation of the function does not +enable the check which allows certificates with invalid or incorrect +policies to pass the certificate verification. + +As suddenly enabling the policy check could break existing deployments it was +decided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy() +function. + +Instead the applications that require OpenSSL to perform certificate +policy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly +enable the policy check by calling X509_VERIFY_PARAM_set_flags() with +the X509_V_FLAG_POLICY_CHECK flag argument. + +Certificate policy checks are disabled by default in OpenSSL and are not +commonly used by applications.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Certificate policy check not enabled", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-0466", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + }, + { + "type": "URL", + "value": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2023-0466.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-3722.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230414-0001/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6039-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-0466", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2023/dsa-5417", + }, + { + "type": "URL", + "value": "https://www.openssl.org/news/secadv/20230328.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-6755", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + ], + }, + "category": "Vulnerability", + "description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain "skeleton key" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Dual_EC_DRBG: weak pseudo random number generator", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-6755", + }, + { + "type": "URL", + "value": "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + }, + { + "type": "URL", + "value": "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + }, + { + "type": "URL", + "value": "http://rump2007.cr.yp.to/15-shumow.pdf", + }, + { + "type": "URL", + "value": "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + }, + { + "type": "URL", + "value": "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/63657", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2007-6755", + }, + { + "type": "URL", + "value": "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2010-0928", + "installedVersion": "1.1.1d-0+deb10u6", + "packageName": "libssl1.1", + "references": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928", + ], + }, + "category": "Vulnerability", + "description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a "fault-based attack."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "openssl: RSA authentication weakness", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2010-0928", + }, + { + "type": "URL", + "value": "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + }, + { + "type": "URL", + "value": "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + }, + { + "type": "URL", + "value": "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + }, + { + "type": "URL", + "value": "http://www.osvdb.org/62808", + }, + { + "type": "URL", + "value": "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2010-0928", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-12886", + "installedVersion": "8.3.0-6", + "packageName": "libstdc++6", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-12886", + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379&view=markup", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "https://www.cve.org/CVERecord?id=CVE-2018-12886", + "https://www.gnu.org/software/gcc/gcc-8/changes.html", + ], + }, + "category": "Vulnerability", + "description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-12886", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379&view=markup", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-12886", + }, + { + "type": "URL", + "value": "https://www.gnu.org/software/gcc/gcc-8/changes.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-15847", + "installedVersion": "8.3.0-6", + "packageName": "libstdc++6", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + "https://access.redhat.com/security/cve/CVE-2019-15847", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + "https://linux.oracle.com/cve/CVE-2019-15847.html", + "https://linux.oracle.com/errata/ELSA-2020-1864.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + "https://www.cve.org/CVERecord?id=CVE-2019-15847", + ], + }, + "category": "Vulnerability", + "description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "gcc: POWER9 "DARN" RNG intrinsic produces repeated output", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-15847", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-15847", + }, + { + "type": "URL", + "value": "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-15847.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1864.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-15847", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-3843", + "installedVersion": "241-7~deb10u7", + "packageName": "libsystemd0", + "references": [ + "http://www.securityfocus.com/bid/108116", + "https://access.redhat.com/security/cve/CVE-2019-3843", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3843", + "https://github.com/systemd/systemd-stable/pull/54 (backport for v241-stable)", + "https://linux.oracle.com/cve/CVE-2019-3843.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3843", + ], + }, + "category": "Vulnerability", + "description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: services with DynamicUser can create SUID/SGID binaries", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-3843", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/108116", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/pull/54 (backport for v241-stable)", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-3843.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1794.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190619-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4269-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4269-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-3843", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-3844", + "installedVersion": "241-7~deb10u7", + "packageName": "libsystemd0", + "references": [ + "http://www.securityfocus.com/bid/108096", + "https://access.redhat.com/security/cve/CVE-2019-3844", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3844", + "https://linux.oracle.com/cve/CVE-2019-3844.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3844", + ], + }, + "category": "Vulnerability", + "description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: services with DynamicUser can get new privileges and create SGID binaries", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-3844", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/108096", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-3844.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1794.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190619-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4269-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4269-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-3844", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "241-7~deb10u9", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-26604", + "installedVersion": "241-7~deb10u7", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-26604", + "https://blog.compass-security.com/2012/10/dangerous-sudoers-entries-part-2-insecure-functionality/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26604", + "https://github.com/systemd/systemd/blob/main/NEWS#L4335-L4340", + "https://github.com/systemd/systemd/issues/5666", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00032.html", + "https://medium.com/@zenmoviefornotification/saidov-maxim-cve-2023-26604-c1232a526ba7", + "https://nvd.nist.gov/vuln/detail/CVE-2023-26604", + "https://security.netapp.com/advisory/ntap-20230505-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-26604", + ], + }, + "category": "Vulnerability", + "description": "systemd before 247 does not adequately block local privilege escalation for some Sudo configurations, e.g., plausible sudoers files in which the "systemctl status" command may be executed. Specifically, systemd does not set LESSSECURE to 1, and thus other programs may be launched from the less program. This presents a substantial security risk when running systemctl from Sudo, because less executes as root when the terminal size is too small to show the complete systemctl output.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "privilege escalation via the less pager", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-26604", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-26604", + }, + { + "type": "URL", + "value": "https://blog.compass-security.com/2012/10/dangerous-sudoers-entries-part-2-insecure-functionality/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26604", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/blob/main/NEWS#L4335-L4340", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/5666", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00032.html", + }, + { + "type": "URL", + "value": "https://medium.com/@zenmoviefornotification/saidov-maxim-cve-2023-26604-c1232a526ba7", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-26604", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230505-0009/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-26604", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "241-7~deb10u8", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-33910", + "installedVersion": "241-7~deb10u7", + "packageName": "libsystemd0", + "references": [ + "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33910.json", + "https://access.redhat.com/security/cve/CVE-2021-33910", + "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33910", + "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + "https://linux.oracle.com/cve/CVE-2021-33910.html", + "https://linux.oracle.com/errata/ELSA-2021-2717.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20211104-0008/", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33910", + "https://www.debian.org/security/2021/dsa-4942", + "https://www.openwall.com/lists/oss-security/2021/07/20/2", + "https://www.qualys.com/2021/07/20/cve-2021-33910/denial-of-service-systemd.txt", + ], + }, + "category": "Vulnerability", + "description": "basic/unit-name.c in systemd prior to 246.15, 247.8, 248.5, and 249.1 has a Memory Allocation with an Excessive Size Value (involving strdupa and alloca for a pathname controlled by a local attacker) that results in an operating system crash.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: uncontrolled allocation on the stack in function unit_name_path_escape leads to crash", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33910", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33910.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-33910.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-2717.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211104-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4942", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2021/07/20/2", + }, + { + "type": "URL", + "value": "https://www.qualys.com/2021/07/20/cve-2021-33910/denial-of-service-systemd.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3997", + "installedVersion": "241-7~deb10u7", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-3997", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3997", + "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5226-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3997", + "https://www.openwall.com/lists/oss-security/2022/01/10/2", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in systemd. An uncontrolled recursion in systemd-tmpfiles may lead to a denial of service at boot time when too many nested directories are created in /tmp.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: Uncontrolled recursion in systemd-tmpfiles when removing files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3997", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5226-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/01/10/2", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3821", + "installedVersion": "241-7~deb10u7", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821", + ], + }, + "category": "Vulnerability", + "description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "buffer overrun in format_timespan() function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3821", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0336", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2139327", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0336", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/23928", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/23933", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3821.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3821", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4415", + "installedVersion": "241-7~deb10u7", + "packageName": "libsystemd0", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4415", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0954", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2155515", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0954", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4415.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/12/21/3", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4392", + "installedVersion": "241-7~deb10u7", + "packageName": "libsystemd0", + "references": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392", + ], + }, + "category": "Vulnerability", + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4392", + }, + { + "type": "URL", + "value": "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2013/10/01/9", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4392", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-20386", + "installedVersion": "241-7~deb10u7", + "packageName": "libsystemd0", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + "https://access.redhat.com/security/cve/CVE-2019-20386", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20386", + "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + "https://linux.oracle.com/cve/CVE-2019-20386.html", + "https://linux.oracle.com/errata/ELSA-2020-4553.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + "https://security.netapp.com/advisory/ntap-20200210-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-20386", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: memory leak in button_open() in login/logind-button.c when udev events are received", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-20386", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-20386", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20386", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-20386.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4553.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200210-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4269-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4269-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-20386", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-13529", + "installedVersion": "241-7~deb10u7", + "packageName": "libsystemd0", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529", + ], + }, + "category": "Vulnerability", + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-13529", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-13529.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4361.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210625-0005/", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-13529", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31437", + "installedVersion": "241-7~deb10u7", + "packageName": "libsystemd0", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify a sealed log file such that, in some views, not all existing and sealed log messages are displayed. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can modify a seale ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31437", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31438", + "installedVersion": "241-7~deb10u7", + "packageName": "libsystemd0", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can truncate a sealed log file and then resume log sealing such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can truncate a sea ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31438", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31439", + "installedVersion": "241-7~deb10u7", + "packageName": "libsystemd0", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify the contents of past events in a sealed log file and then adjust the file such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can modify the con ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31439", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "4.13-3+deb10u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-46848", + "installedVersion": "4.13-3", + "packageName": "libtasn1-6", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0343", + "https://access.redhat.com/security/cve/CVE-2021-46848", + "https://bugs.gentoo.org/866237", + "https://bugzilla.redhat.com/2140058", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + "https://errata.almalinux.org/9/ALSA-2023-0343.html", + "https://errata.rockylinux.org/RLSA-2023:0343", + "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + "https://gitlab.com/gnutls/libtasn1/-/issues/32", + "https://linux.oracle.com/cve/CVE-2021-46848.html", + "https://linux.oracle.com/errata/ELSA-2023-0343.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + "https://security.netapp.com/advisory/ntap-20221118-0006/", + "https://ubuntu.com/security/notices/USN-5707-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46848", + ], + }, + "category": "Vulnerability", + "description": "GNU Libtasn1 before 4.19.0 has an ETYPE_OK off-by-one array size check that affects asn1_encode_simple_der.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libtasn1: Out-of-bound access in ETYPE_OK", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-46848", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0343", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/866237", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2140058", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0343.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0343", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/-/issues/32", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-46848.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0343.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20221118-0006/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5707-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-46848", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-1000654", + "installedVersion": "4.13-3", + "packageName": "libtasn1-6", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00018.html", + "http://www.securityfocus.com/bid/105151", + "https://access.redhat.com/security/cve/CVE-2018-1000654", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1000654", + "https://gitlab.com/gnutls/libtasn1/issues/4", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-1000654", + "https://ubuntu.com/security/notices/USN-5352-1", + "https://www.cve.org/CVERecord?id=CVE-2018-1000654", + ], + }, + "category": "Vulnerability", + "description": "GNU Libtasn1-4.13 libtasn1-4.13 version libtasn1-4.13, libtasn1-4.12 contains a DoS, specifically CPU usage will reach 100% when running asn1Paser against the POC due to an issue in _asn1_expand_object_id(p_tree), after a long time, the program will be killed. This attack appears to be exploitable via parsing a crafted file.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "libtasn1: Infinite loop in _asn1_expand_object_id(ptree) leads to memory exhaustion", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-1000654", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00009.html", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00018.html", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/105151", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-1000654", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1000654", + }, + { + "type": "URL", + "value": "https://gitlab.com/gnutls/libtasn1/issues/4", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-1000654", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5352-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-1000654", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-3843", + "installedVersion": "241-7~deb10u7", + "packageName": "libudev1", + "references": [ + "http://www.securityfocus.com/bid/108116", + "https://access.redhat.com/security/cve/CVE-2019-3843", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3843", + "https://github.com/systemd/systemd-stable/pull/54 (backport for v241-stable)", + "https://linux.oracle.com/cve/CVE-2019-3843.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3843", + ], + }, + "category": "Vulnerability", + "description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: services with DynamicUser can create SUID/SGID binaries", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-3843", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/108116", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/pull/54 (backport for v241-stable)", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-3843.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1794.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190619-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4269-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4269-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-3843", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-3844", + "installedVersion": "241-7~deb10u7", + "packageName": "libudev1", + "references": [ + "http://www.securityfocus.com/bid/108096", + "https://access.redhat.com/security/cve/CVE-2019-3844", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3844", + "https://linux.oracle.com/cve/CVE-2019-3844.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3844", + ], + }, + "category": "Vulnerability", + "description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: services with DynamicUser can get new privileges and create SGID binaries", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-3844", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/108096", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-3844.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-1794.html", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20190619-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4269-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4269-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-3844", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "241-7~deb10u9", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-26604", + "installedVersion": "241-7~deb10u7", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-26604", + "https://blog.compass-security.com/2012/10/dangerous-sudoers-entries-part-2-insecure-functionality/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26604", + "https://github.com/systemd/systemd/blob/main/NEWS#L4335-L4340", + "https://github.com/systemd/systemd/issues/5666", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00032.html", + "https://medium.com/@zenmoviefornotification/saidov-maxim-cve-2023-26604-c1232a526ba7", + "https://nvd.nist.gov/vuln/detail/CVE-2023-26604", + "https://security.netapp.com/advisory/ntap-20230505-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-26604", + ], + }, + "category": "Vulnerability", + "description": "systemd before 247 does not adequately block local privilege escalation for some Sudo configurations, e.g., plausible sudoers files in which the "systemctl status" command may be executed. Specifically, systemd does not set LESSSECURE to 1, and thus other programs may be launched from the less program. This presents a substantial security risk when running systemctl from Sudo, because less executes as root when the terminal size is too small to show the complete systemctl output.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "privilege escalation via the less pager", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-26604", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-26604", + }, + { + "type": "URL", + "value": "https://blog.compass-security.com/2012/10/dangerous-sudoers-entries-part-2-insecure-functionality/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26604", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/blob/main/NEWS#L4335-L4340", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/5666", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2023/03/msg00032.html", + }, + { + "type": "URL", + "value": "https://medium.com/@zenmoviefornotification/saidov-maxim-cve-2023-26604-c1232a526ba7", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-26604", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230505-0009/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-26604", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "241-7~deb10u8", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-33910", + "installedVersion": "241-7~deb10u7", + "packageName": "libudev1", + "references": [ + "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33910.json", + "https://access.redhat.com/security/cve/CVE-2021-33910", + "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33910", + "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + "https://linux.oracle.com/cve/CVE-2021-33910.html", + "https://linux.oracle.com/errata/ELSA-2021-2717.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20211104-0008/", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33910", + "https://www.debian.org/security/2021/dsa-4942", + "https://www.openwall.com/lists/oss-security/2021/07/20/2", + "https://www.qualys.com/2021/07/20/cve-2021-33910/denial-of-service-systemd.txt", + ], + }, + "category": "Vulnerability", + "description": "basic/unit-name.c in systemd prior to 246.15, 247.8, 248.5, and 249.1 has a Memory Allocation with an Excessive Size Value (involving strdupa and alloca for a pathname controlled by a local attacker) that results in an operating system crash.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: uncontrolled allocation on the stack in function unit_name_path_escape leads to crash", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-33910", + }, + { + "type": "URL", + "value": "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33910.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2021-33910.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-2717.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20211104-0008/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-33910", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2021/dsa-4942", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2021/07/20/2", + }, + { + "type": "URL", + "value": "https://www.qualys.com/2021/07/20/cve-2021-33910/denial-of-service-systemd.txt", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-3997", + "installedVersion": "241-7~deb10u7", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-3997", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3997", + "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5226-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3997", + "https://www.openwall.com/lists/oss-security/2022/01/10/2", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in systemd. An uncontrolled recursion in systemd-tmpfiles may lead to a denial of service at boot time when too many nested directories are created in /tmp.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: Uncontrolled recursion in systemd-tmpfiles when removing files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-3997", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5226-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-3997", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/01/10/2", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-3821", + "installedVersion": "241-7~deb10u7", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821", + ], + }, + "category": "Vulnerability", + "description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "buffer overrun in format_timespan() function", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-3821", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0336", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2139327", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0336", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/issues/23928", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/pull/23933", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-3821.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0336.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202305-15", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-3821", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-4415", + "installedVersion": "241-7~deb10u7", + "packageName": "libudev1", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3", + ], + }, + "category": "Vulnerability", + "description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-4415", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0954", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2155515", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0954", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-4415.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0954.html", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5928-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-4415", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/12/21/3", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4392", + "installedVersion": "241-7~deb10u7", + "packageName": "libudev1", + "references": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392", + ], + }, + "category": "Vulnerability", + "description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4392", + }, + { + "type": "URL", + "value": "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2013/10/01/9", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4392", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-20386", + "installedVersion": "241-7~deb10u7", + "packageName": "libudev1", + "references": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + "https://access.redhat.com/security/cve/CVE-2019-20386", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20386", + "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + "https://linux.oracle.com/cve/CVE-2019-20386.html", + "https://linux.oracle.com/errata/ELSA-2020-4553.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + "https://security.netapp.com/advisory/ntap-20200210-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-20386", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: memory leak in button_open() in login/logind-button.c when udev events are received", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-20386", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-20386", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20386", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2019-20386.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2020-4553.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20200210-0002/", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4269-1", + }, + { + "type": "URL", + "value": "https://usn.ubuntu.com/4269-1/", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-20386", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-13529", + "installedVersion": "241-7~deb10u7", + "packageName": "libudev1", + "references": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529", + ], + }, + "category": "Vulnerability", + "description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-13529", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/08/17/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2021/09/07/3", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2020-13529.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2021-4361.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202107-48", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20210625-0005/", + }, + { + "type": "URL", + "value": "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5013-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-13529", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31437", + "installedVersion": "241-7~deb10u7", + "packageName": "libudev1", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify a sealed log file such that, in some views, not all existing and sealed log messages are displayed. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can modify a seale ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31437", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31438", + "installedVersion": "241-7~deb10u7", + "packageName": "libudev1", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can truncate a sealed log file and then resume log sealing such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can truncate a sea ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31438", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31439", + "installedVersion": "241-7~deb10u7", + "packageName": "libudev1", + "references": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases", + ], + }, + "category": "Vulnerability", + "description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify the contents of past events in a sealed log file and then adjust the file such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent "a reply denying that any of the finding was a security vulnerability."", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "An issue was discovered in systemd 253. An attacker can modify the con ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31439", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald", + }, + { + "type": "URL", + "value": "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + }, + { + "type": "URL", + "value": "https://github.com/systemd/systemd/releases", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2012-2663", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "libxtables12", + "references": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663", + ], + }, + "category": "Vulnerability", + "description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "iptables: --syn flag bypass", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2012-2663", + }, + { + "type": "URL", + "value": "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2012-2663", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-11360", + "installedVersion": "1.8.5-3~bpo10+1", + "packageName": "libxtables12", + "references": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360", + ], + }, + "category": "Vulnerability", + "description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "iptables: buffer overflow in iptables-restore", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-11360", + }, + { + "type": "URL", + "value": "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-11360", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-5686", + "installedVersion": "1:4.5-1.1", + "packageName": "login", + "references": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825", + ], + }, + "category": "Vulnerability", + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-5686", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/27215", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/26048", + }, + { + "type": "URL", + "value": "http://www.vupen.com/english/advisories/2007/3474", + }, + { + "type": "URL", + "value": "https://issues.rpath.com/browse/RPL-1825", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4235", + "installedVersion": "1:4.5-1.1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235", + ], + }, + "category": "Vulnerability", + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/issues/317", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/545", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-26", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4235", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-7169", + "installedVersion": "1:4.5-1.1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-7169", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7169", + "https://github.com/shadow-maint/shadow/pull/97", + "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + "https://security.gentoo.org/glsa/201805-09", + "https://ubuntu.com/security/notices/USN-5254-1", + "https://www.cve.org/CVERecord?id=CVE-2018-7169", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used "group blacklisting" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-7169", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-7169", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7169", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/97", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201805-09", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5254-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-7169", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19882", + "installedVersion": "1:4.5-1.1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882", + ], + }, + "category": "Vulnerability", + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19882", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://bugs.archlinux.org/task/64836", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/702252", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/199", + }, + { + "type": "URL", + "value": "https://github.com/void-linux/void-packages/pull/17580", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202008-09", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19882", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29383", + "installedVersion": "1:4.5-1.1", + "packageName": "login", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + ], + }, + "category": "Vulnerability", + "description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that "cat /etc/passwd" shows a rogue user account.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Improper input validation in shadow-utils package utility chfn", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/687", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2007-5686", + "installedVersion": "1:4.5-1.1", + "packageName": "passwd", + "references": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825", + ], + }, + "category": "Vulnerability", + "description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2007-5686", + }, + { + "type": "URL", + "value": "http://secunia.com/advisories/27215", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + }, + { + "type": "URL", + "value": "http://www.securityfocus.com/bid/26048", + }, + { + "type": "URL", + "value": "http://www.vupen.com/english/advisories/2007/3474", + }, + { + "type": "URL", + "value": "https://issues.rpath.com/browse/RPL-1825", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2013-4235", + "installedVersion": "1:4.5-1.1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235", + ], + }, + "category": "Vulnerability", + "description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/cve-2013-4235", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/issues/317", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/545", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security-tracker.debian.org/tracker/CVE-2013-4235", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-26", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5745-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2013-4235", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-7169", + "installedVersion": "1:4.5-1.1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2018-7169", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7169", + "https://github.com/shadow-maint/shadow/pull/97", + "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + "https://security.gentoo.org/glsa/201805-09", + "https://ubuntu.com/security/notices/USN-5254-1", + "https://www.cve.org/CVERecord?id=CVE-2018-7169", + ], + }, + "category": "Vulnerability", + "description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used "group blacklisting" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-7169", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-7169", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7169", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/97", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/201805-09", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5254-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-7169", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-19882", + "installedVersion": "1:4.5-1.1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882", + ], + }, + "category": "Vulnerability", + "description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-19882", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://bugs.archlinux.org/task/64836", + }, + { + "type": "URL", + "value": "https://bugs.gentoo.org/702252", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/199", + }, + { + "type": "URL", + "value": "https://github.com/void-linux/void-packages/pull/17580", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202008-09", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-19882", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-29383", + "installedVersion": "1:4.5-1.1", + "packageName": "passwd", + "references": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + ], + }, + "category": "Vulnerability", + "description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that "cat /etc/passwd" shows a rogue user account.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "Improper input validation in shadow-utils package utility chfn", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-29383", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + }, + { + "type": "URL", + "value": "https://github.com/shadow-maint/shadow/pull/687", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2023-29383", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + }, + { + "type": "URL", + "value": "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2020-16156", + "installedVersion": "5.28.1-6+deb10u1", + "packageName": "perl-base", + "references": [ + "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + "https://access.redhat.com/security/cve/CVE-2020-16156", + "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + "https://ubuntu.com/security/notices/USN-5689-1", + "https://ubuntu.com/security/notices/USN-5689-2", + "https://www.cve.org/CVERecord?id=CVE-2020-16156", + ], + }, + "category": "Vulnerability", + "description": "CPAN 2.28 allows Signature Verification Bypass.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "perl-CPAN: Bypass of verification of signatures in CHECKSUMS files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2020-16156", + }, + { + "type": "URL", + "value": "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + }, + { + "type": "URL", + "value": "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5689-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5689-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2020-16156", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31484", + "installedVersion": "5.28.1-6+deb10u1", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + "https://github.com/andk/cpanpm/pull/175", + "https://metacpan.org/dist/CPAN/changes", + "https://ubuntu.com/security/notices/USN-6112-1", + "https://ubuntu.com/security/notices/USN-6112-2", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + ], + }, + "category": "Vulnerability", + "description": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "CPAN.pm before 2.35 does not verify TLS certificates when downloading ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31484", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/29/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/5", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/07/2", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + }, + { + "type": "URL", + "value": "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + }, + { + "type": "URL", + "value": "https://github.com/andk/cpanpm/pull/175", + }, + { + "type": "URL", + "value": "https://metacpan.org/dist/CPAN/changes", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6112-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-6112-2", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/18/14", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2011-4116", + "installedVersion": "5.28.1-6+deb10u1", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2011/11/04/2", + "http://www.openwall.com/lists/oss-security/2011/11/04/4", + "https://access.redhat.com/security/cve/CVE-2011-4116", + "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + "https://seclists.org/oss-sec/2011/q4/238", + "https://www.cve.org/CVERecord?id=CVE-2011-4116", + ], + }, + "category": "Vulnerability", + "description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "perl: File::Temp insecure temporary file handling", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2011-4116", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2011/11/04/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2011/11/04/4", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2011-4116", + }, + { + "type": "URL", + "value": "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + }, + { + "type": "URL", + "value": "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + }, + { + "type": "URL", + "value": "https://seclists.org/oss-sec/2011/q4/238", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2011-4116", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2023-31486", + "installedVersion": "5.28.1-6+deb10u1", + "packageName": "perl-base", + "references": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://github.com/chansen/p5-http-tiny/pull/153", + "https://hackeriet.github.io/cpan-http-tiny-overview/", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + "https://www.openwall.com/lists/oss-security/2023/05/03/4", + "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/", + ], + }, + "category": "Vulnerability", + "description": "HTTP::Tiny before 0.083, a Perl core module since 5.13.9 and available standalone on CPAN, has an insecure default TLS configuration where users must opt in to verify certificates.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "HTTP::Tiny before 0.083, a Perl core module since 5.13.9 and available ...", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2023-31486", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/04/29/1", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/3", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/03/5", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2023/05/07/2", + }, + { + "type": "URL", + "value": "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + }, + { + "type": "URL", + "value": "https://github.com/chansen/p5-http-tiny/pull/153", + }, + { + "type": "URL", + "value": "https://hackeriet.github.io/cpan-http-tiny-overview/", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/04/18/14", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2023/05/03/4", + }, + { + "type": "URL", + "value": "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2005-2541", + "installedVersion": "1.30+dfsg-6", + "packageName": "tar", + "references": [ + "http://marc.info/?l=bugtraq&m=112327628230258&w=2", + "https://access.redhat.com/security/cve/CVE-2005-2541", + "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + "https://www.cve.org/CVERecord?id=CVE-2005-2541", + ], + }, + "category": "Vulnerability", + "description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "tar: does not properly warn the user when extracting setuid or setgid files", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2005-2541", + }, + { + "type": "URL", + "value": "http://marc.info/?l=bugtraq&m=112327628230258&w=2", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2005-2541", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2005-2541", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2019-9923", + "installedVersion": "1.30+dfsg-6", + "packageName": "tar", + "references": [ + "http://git.savannah.gnu.org/cgit/tar.git/commit/?id=cb07844454d8cc9fb21f53ace75975f91185a120", + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00077.html", + "http://savannah.gnu.org/bugs/?55369", + "https://access.redhat.com/security/cve/CVE-2019-9923", + "https://bugs.launchpad.net/ubuntu/+source/tar/+bug/1810241", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-9923", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9923", + "https://ubuntu.com/security/notices/USN-4692-1", + "https://www.cve.org/CVERecord?id=CVE-2019-9923", + ], + }, + "category": "Vulnerability", + "description": "pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "tar: null-pointer dereference in pax_decode_header in sparse.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2019-9923", + }, + { + "type": "URL", + "value": "http://git.savannah.gnu.org/cgit/tar.git/commit/?id=cb07844454d8cc9fb21f53ace75975f91185a120", + }, + { + "type": "URL", + "value": "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00077.html", + }, + { + "type": "URL", + "value": "http://savannah.gnu.org/bugs/?55369", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2019-9923", + }, + { + "type": "URL", + "value": "https://bugs.launchpad.net/ubuntu/+source/tar/+bug/1810241", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-9923", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2019-9923", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-4692-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2019-9923", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2021-20193", + "installedVersion": "1.30+dfsg-6", + "packageName": "tar", + "references": [ + "https://access.redhat.com/security/cve/CVE-2021-20193", + "https://bugzilla.redhat.com/show_bug.cgi?id=1917565", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20193", + "https://git.savannah.gnu.org/cgit/tar.git/commit/?id=d9d4435692150fa8ff68e1b1a473d187cc3fd777", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20193", + "https://savannah.gnu.org/bugs/?59897", + "https://security.gentoo.org/glsa/202105-29", + "https://ubuntu.com/security/notices/USN-5329-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20193", + ], + }, + "category": "Vulnerability", + "description": "A flaw was found in the src/list.c of tar 1.33 and earlier. This flaw allows an attacker who can submit a crafted input file to tar to cause uncontrolled consumption of memory. The highest threat from this vulnerability is to system availability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "tar: Memory leak in read_header() in list.c", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2021-20193", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2021-20193", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=1917565", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20193", + }, + { + "type": "URL", + "value": "https://git.savannah.gnu.org/cgit/tar.git/commit/?id=d9d4435692150fa8ff68e1b1a473d187cc3fd777", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2021-20193", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/bugs/?59897", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202105-29", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5329-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2021-20193", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-48303", + "installedVersion": "1.30+dfsg-6", + "packageName": "tar", + "references": [ + "https://access.redhat.com/errata/RHSA-2023:0959", + "https://access.redhat.com/security/cve/CVE-2022-48303", + "https://bugzilla.redhat.com/2149722", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + "https://errata.almalinux.org/9/ALSA-2023-0959.html", + "https://errata.rockylinux.org/RLSA-2023:0959", + "https://linux.oracle.com/cve/CVE-2022-48303.html", + "https://linux.oracle.com/errata/ELSA-2023-0959.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + "https://savannah.gnu.org/bugs/?62387", + "https://savannah.gnu.org/patch/?10307", + "https://ubuntu.com/security/notices/USN-5900-1", + "https://ubuntu.com/security/notices/USN-5900-2", + "https://www.cve.org/CVERecord?id=CVE-2022-48303", + ], + }, + "category": "Vulnerability", + "description": "GNU Tar through 1.34 has a one-byte out-of-bounds read that results in use of uninitialized memory for a conditional jump. Exploitation to change the flow of control has not been demonstrated. The issue occurs in from_header in list.c via a V7 archive in which mtime has approximately 11 whitespace characters.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "heap buffer overflow at from_header() in list.c via specially crafted checksum", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-48303", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2023:0959", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2149722", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2023-0959.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2023:0959", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-48303.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-0959.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/bugs/?62387", + }, + { + "type": "URL", + "value": "https://savannah.gnu.org/patch/?10307", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5900-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5900-2", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-48303", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": "1:1.2.11.dfsg-1+deb10u2", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2022-37434", + "installedVersion": "1:1.2.11.dfsg-1", + "packageName": "zlib1g", + "references": [ + "http://seclists.org/fulldisclosure/2022/Oct/37", + "http://seclists.org/fulldisclosure/2022/Oct/38", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/42", + "http://www.openwall.com/lists/oss-security/2022/08/05/2", + "http://www.openwall.com/lists/oss-security/2022/08/09/1", + "https://access.redhat.com/errata/RHSA-2022:8291", + "https://access.redhat.com/security/cve/CVE-2022-37434", + "https://bugzilla.redhat.com/2116639", + "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + "https://errata.almalinux.org/9/ALSA-2022-8291.html", + "https://errata.rockylinux.org/RLSA-2022:8291", + "https://github.com/curl/curl/issues/9271", + "https://github.com/ivd38/zlib_overflow", + "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + "https://linux.oracle.com/cve/CVE-2022-37434.html", + "https://linux.oracle.com/errata/ELSA-2023-1095.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + "https://security.netapp.com/advisory/ntap-20220901-0005/", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://support.apple.com/kb/HT213488", + "https://support.apple.com/kb/HT213489", + "https://support.apple.com/kb/HT213490", + "https://support.apple.com/kb/HT213491", + "https://support.apple.com/kb/HT213493", + "https://support.apple.com/kb/HT213494", + "https://ubuntu.com/security/notices/USN-5570-1", + "https://ubuntu.com/security/notices/USN-5570-2", + "https://ubuntu.com/security/notices/USN-5573-1", + "https://www.cve.org/CVERecord?id=CVE-2022-37434", + "https://www.debian.org/security/2022/dsa-5218", + ], + }, + "category": "Vulnerability", + "description": "zlib through 1.2.12 has a heap-based buffer over-read or buffer overflow in inflate in inflate.c via a large gzip header extra field. NOTE: only applications that call inflateGetHeader are affected. Some common applications bundle the affected zlib source code but may be unable to call inflateGetHeader (e.g., see the nodejs/node reference).", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "heap-based buffer over-read and overflow in inflate() in inflate.c via a large gzip header extra field", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2022-37434", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/37", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/38", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/41", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/Oct/42", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/08/05/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/08/09/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8291", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2116639", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8291.html", + }, + { + "type": "URL", + "value": "https://errata.rockylinux.org/RLSA-2022:8291", + }, + { + "type": "URL", + "value": "https://github.com/curl/curl/issues/9271", + }, + { + "type": "URL", + "value": "https://github.com/ivd38/zlib_overflow", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + }, + { + "type": "URL", + "value": "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2022-37434.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2023-1095.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220901-0005/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20230427-0007/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213488", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213489", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213490", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213491", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213493", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213494", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5570-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5570-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5573-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2022-37434", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5218", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "1:1.2.11.dfsg-1+deb10u1", + "foundIn": "Target: 'k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "CVE-2018-25032", + "installedVersion": "1:1.2.11.dfsg-1", + "packageName": "zlib1g", + "references": [ + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "http://www.openwall.com/lists/oss-security/2022/03/25/2", + "http://www.openwall.com/lists/oss-security/2022/03/26/1", + "https://access.redhat.com/errata/RHSA-2022:8420", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + "https://access.redhat.com/security/cve/CVE-2018-25032", + "https://bugzilla.redhat.com/2067945", + "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + "https://errata.almalinux.org/9/ALSA-2022-8420.html", + "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + "https://github.com/madler/zlib/issues/605", + "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + "https://linux.oracle.com/cve/CVE-2018-25032.html", + "https://linux.oracle.com/errata/ELSA-2022-9565.html", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + "https://security.gentoo.org/glsa/202210-42", + "https://security.netapp.com/advisory/ntap-20220526-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5355-1", + "https://ubuntu.com/security/notices/USN-5355-2", + "https://ubuntu.com/security/notices/USN-5359-1", + "https://ubuntu.com/security/notices/USN-5359-2", + "https://ubuntu.com/security/notices/USN-5739-1", + "https://www.cve.org/CVERecord?id=CVE-2018-25032", + "https://www.debian.org/security/2022/dsa-5111", + "https://www.openwall.com/lists/oss-security/2022/03/24/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/3", + "https://www.oracle.com/security-alerts/cpujul2022.html", + ], + }, + "category": "Vulnerability", + "description": "zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": undefined, + "name": "A flaw found in zlib when compressing (not decompressing) certain inputs", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/nvd/cve-2018-25032", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/33", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/35", + }, + { + "type": "URL", + "value": "http://seclists.org/fulldisclosure/2022/May/38", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/03/25/2", + }, + { + "type": "URL", + "value": "http://www.openwall.com/lists/oss-security/2022/03/26/1", + }, + { + "type": "URL", + "value": "https://access.redhat.com/errata/RHSA-2022:8420", + }, + { + "type": "URL", + "value": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + }, + { + "type": "URL", + "value": "https://access.redhat.com/security/cve/CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://bugzilla.redhat.com/2067945", + }, + { + "type": "URL", + "value": "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + }, + { + "type": "URL", + "value": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://errata.almalinux.org/9/ALSA-2022-8420.html", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + }, + { + "type": "URL", + "value": "https://github.com/madler/zlib/issues/605", + }, + { + "type": "URL", + "value": "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + }, + { + "type": "URL", + "value": "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + }, + { + "type": "URL", + "value": "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/cve/CVE-2018-25032.html", + }, + { + "type": "URL", + "value": "https://linux.oracle.com/errata/ELSA-2022-9565.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + }, + { + "type": "URL", + "value": "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + }, + { + "type": "URL", + "value": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + }, + { + "type": "URL", + "value": "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://security.gentoo.org/glsa/202210-42", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220526-0009/", + }, + { + "type": "URL", + "value": "https://security.netapp.com/advisory/ntap-20220729-0004/", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213255", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213256", + }, + { + "type": "URL", + "value": "https://support.apple.com/kb/HT213257", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5355-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5355-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5359-1", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5359-2", + }, + { + "type": "URL", + "value": "https://ubuntu.com/security/notices/USN-5739-1", + }, + { + "type": "URL", + "value": "https://www.cve.org/CVERecord?id=CVE-2018-25032", + }, + { + "type": "URL", + "value": "https://www.debian.org/security/2022/dsa-5111", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/24/1", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/28/1", + }, + { + "type": "URL", + "value": "https://www.openwall.com/lists/oss-security/2022/03/28/3", + }, + { + "type": "URL", + "value": "https://www.oracle.com/security-alerts/cpujul2022.html", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'kube-proxy' of DaemonSet 'kube-proxy' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV009", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009", + ], + }, + "category": "Misconfiguration", + "description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Do not set 'spec.template.spec.hostNetwork' to true.", + "name": "Access to host network(DaemonSet 'kube-proxy' should not set 'spec.template.spec.hostNetwork' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv009", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV015", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015", + ], + }, + "category": "Misconfiguration", + "description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'containers[].resources.requests.cpu'.", + "name": "CPU requests not specified(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.requests.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv015", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV016", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016", + ], + }, + "category": "Misconfiguration", + "description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'containers[].resources.requests.memory'.", + "name": "Memory requests not specified(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.requests.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv016", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV017", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv017", + ], + }, + "category": "Misconfiguration", + "description": "Privileged containers share namespaces with the host system and do not offer any security. They should be used exclusively for system containers that require high privileges.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Change 'containers[].securityContext.privileged' to 'false'.", + "name": "Privileged container(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.privileged' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv017", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV023", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023", + ], + }, + "category": "Misconfiguration", + "description": "HostPath volumes must be forbidden.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Do not set 'spec.volumes[*].hostPath'.", + "name": "hostPath volumes mounted(DaemonSet 'kube-proxy' should not set 'spec.template.volumes.hostPath')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv023", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'DaemonSet/kube-proxy' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'DaemonSet' / Name: 'kube-proxy'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-admin' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV050", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050", + ], + }, + "category": "Misconfiguration", + "description": "An effective level of access equivalent to cluster-admin should not be provided.", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-admin'", + "mitigation": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "name": "Do not allow management of RBAC resources(ClusterRole 'system:aggregate-to-admin' should not have access to resources ["roles", "rolebindings"] for verbs ["create", "update", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv050", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(ClusterRole 'system:aggregate-to-edit' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:aggregate-to-edit' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:aggregate-to-edit' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:aggregate-to-edit' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:aggregate-to-edit'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:aggregate-to-edit' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": "2020d-0+deb9u1", + "foundIn": "Target: 'k8s.gcr.io/etcd:3.4.13-0 (debian 9.13)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-2424-1", + "installedVersion": "2020a-0+deb9u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new upstream version", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2020e-0+deb9u1", + "foundIn": "Target: 'k8s.gcr.io/etcd:3.4.13-0 (debian 9.13)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-2509-1", + "installedVersion": "2020a-0+deb9u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new upstream version", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb9u1", + "foundIn": "Target: 'k8s.gcr.io/etcd:3.4.13-0 (debian 9.13)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-2542-1", + "installedVersion": "2020a-0+deb9u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new upstream version", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb9u2", + "foundIn": "Target: 'k8s.gcr.io/etcd:3.4.13-0 (debian 9.13)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-2797-1", + "installedVersion": "2020a-0+deb9u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new upstream version", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb9u3", + "foundIn": "Target: 'k8s.gcr.io/etcd:3.4.13-0 (debian 9.13)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-2963-1", + "installedVersion": "2020a-0+deb9u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": "2021a-0+deb9u4", + "foundIn": "Target: 'k8s.gcr.io/etcd:3.4.13-0 (debian 9.13)' / Class: 'os-pkgs' / Type: 'debian'", + "id": "DLA-3051-1", + "installedVersion": "2020a-0+deb9u1", + "packageName": "tzdata", + "references": undefined, + }, + "category": "Vulnerability", + "description": undefined, + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": undefined, + "name": "tzdata - new timezone database", + "references": [], + "severity": "INFORMATIONAL", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV001", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001", + ], + }, + "category": "Misconfiguration", + "description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "name": "Process can elevate its own privileges(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv001", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV003", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003", + ], + }, + "category": "Misconfiguration", + "description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "name": "Default capabilities not dropped(Container 'etcd' of Pod 'etcd-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv003", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV009", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009", + ], + }, + "category": "Misconfiguration", + "description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Do not set 'spec.template.spec.hostNetwork' to true.", + "name": "Access to host network(Pod 'etcd-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv009", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV011", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.cpu'.", + "name": "CPU not limited(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'resources.limits.cpu')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv011", + }, + { + "type": "URL", + "value": "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV012", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012", + ], + }, + "category": "Misconfiguration", + "description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "name": "Runs as root user(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.runAsNonRoot' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv012", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV014", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014", + ], + }, + "category": "Misconfiguration", + "description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "name": "Root file system is not read-only(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv014", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV018", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018", + ], + }, + "category": "Misconfiguration", + "description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set a limit value under 'containers[].resources.limits.memory'.", + "name": "Memory not limited(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'resources.limits.memory')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv018", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-resources-limits-memory/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV020", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with user ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsUser' to an integer > 10000.", + "name": "Runs with low user ID(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.runAsUser' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv020", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV021", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021", + ], + }, + "category": "Misconfiguration", + "description": "Force the container to run with group ID > 10000 to avoid conflicts with the host’s user table.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set 'containers[].securityContext.runAsGroup' to an integer > 10000.", + "name": "Runs with low group ID(Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.runAsGroup' > 10000)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv021", + }, + { + "type": "URL", + "value": "https://kubesec.io/basics/containers-securitycontext-runasuser/", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV023", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023", + ], + }, + "category": "Misconfiguration", + "description": "HostPath volumes must be forbidden.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Do not set 'spec.volumes[*].hostPath'.", + "name": "hostPath volumes mounted(Pod 'etcd-kind-control-plane' should not set 'spec.template.volumes.hostPath')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv023", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV030", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030", + ], + }, + "category": "Misconfiguration", + "description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "name": "Default Seccomp profile not set(Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault')", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv030", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'Pod/etcd-kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV106", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106", + ], + }, + "category": "Misconfiguration", + "description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "location": "Namespace: 'kube-system' / Kind: 'Pod' / Name: 'etcd-kind-control-plane'", + "mitigation": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "name": "Container capabilities must only include NET_BIND_SERVICE(container should drop all)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv106", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:cronjob-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:cronjob-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:cronjob-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:cronjob-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:deployment-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:deployment-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:deployment-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:deployment-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:endpoint-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:endpoint-controller'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:controller:endpoint-controller' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:endpointslice-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:endpointslice-controller'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:controller:endpointslice-controller' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:endpointslicemirroring-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:endpointslicemirroring-controller'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:controller:endpointslicemirroring-controller' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:generic-garbage-collector' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV046", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits specific verb on wildcard resources", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:generic-garbage-collector'", + "mitigation": "Create a role which does not permit specific verb on wildcard resources", + "name": "No wildcard resource roles(Role permits specific verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv046", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:expand-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:expand-controller'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:horizontal-pod-autoscaler' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV046", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits specific verb on wildcard resources", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:horizontal-pod-autoscaler'", + "mitigation": "Create a role which does not permit specific verb on wildcard resources", + "name": "No wildcard resource roles(Role permits specific verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv046", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:job-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:job-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:namespace-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV046", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits specific verb on wildcard resources", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:namespace-controller'", + "mitigation": "Create a role which does not permit specific verb on wildcard resources", + "name": "No wildcard resource roles(Role permits specific verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv046", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:persistent-volume-binder' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:persistent-volume-binder'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:persistent-volume-binder' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:persistent-volume-binder'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:controller:persistent-volume-binder' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:persistent-volume-binder' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:persistent-volume-binder'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:controller:persistent-volume-binder' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:replicaset-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:replicaset-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:replication-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV048", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits update/create of a malicious pod", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:replication-controller'", + "mitigation": "Create a role which does not permit update/create of a malicious pod", + "name": "Do not allow update/create of a malicious pod(Role permits create/update of a malicious pod)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv048", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:resourcequota-controller' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV046", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits specific verb on wildcard resources", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:resourcequota-controller'", + "mitigation": "Create a role which does not permit specific verb on wildcard resources", + "name": "No wildcard resource roles(Role permits specific verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv046", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:controller:root-ca-cert-publisher' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV049", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049", + ], + }, + "category": "Misconfiguration", + "description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "location": "Kind: 'ClusterRole' / Name: 'system:controller:root-ca-cert-publisher'", + "mitigation": "Remove write permission verbs for resource 'configmaps'", + "name": "Do not allow management of configmaps(ClusterRole 'system:controller:root-ca-cert-publisher' should not have access to resource 'configmaps' for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv049", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV046", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits specific verb on wildcard resources", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Create a role which does not permit specific verb on wildcard resources", + "name": "No wildcard resource roles(Role permits specific verb on wildcard resource)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv046", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:kube-controller-manager' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-controller-manager' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-controller-manager'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:kube-controller-manager' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-scheduler' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-scheduler'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:kube-scheduler' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:kube-scheduler' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056", + ], + }, + "category": "Misconfiguration", + "description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "location": "Kind: 'ClusterRole' / Name: 'system:kube-scheduler'", + "mitigation": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "name": "Do not allow management of networking resources(ClusterRole 'system:kube-scheduler' should not have access to resources ["services", "endpoints", "endpointslices", "networkpolicies", "ingresses"] for verbs ["create", "update", "patch", "delete", "deletecollection", "impersonate", "*"])", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv056", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRole/system:node' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV041", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041", + ], + }, + "category": "Misconfiguration", + "description": "Check whether role permits managing secrets", + "location": "Kind: 'ClusterRole' / Name: 'system:node'", + "mitigation": "Create a role which does not permit to manage secrets if not needed", + "name": "Do not allow management of secrets(Role permits management of secret(s))", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv041", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRoleBinding/admin-user' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV111", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv111", + ], + }, + "category": "Misconfiguration", + "description": "The RBAC role cluster-admin provides wide-ranging powers over the environment and should be used only where and when needed.", + "location": "Kind: 'ClusterRoleBinding' / Name: 'admin-user'", + "mitigation": "Identify all clusterrolebindings to the cluster-admin role. Check if they are used and if they need this role or if they could use a role with fewer privileges.", + "name": "Ensure that the cluster-admin role is only used where required(ClusterRoleBinding 'admin-user' with role 'cluster-admin' should be used only when required)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv111", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'ClusterRoleBinding/trivy-k8s' / Class: 'config' / Type: 'kubernetes'", + "id": "KSV111", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv111", + ], + }, + "category": "Misconfiguration", + "description": "The RBAC role cluster-admin provides wide-ranging powers over the environment and should be used only where and when needed.", + "location": "Kind: 'ClusterRoleBinding' / Name: 'trivy-k8s'", + "mitigation": "Identify all clusterrolebindings to the cluster-admin role. Check if they are used and if they need this role or if they could use a role with fewer privileges.", + "name": "Ensure that the cluster-admin role is only used where required(ClusterRoleBinding 'trivy-k8s' with role 'cluster-admin' should be used only when required)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/ksv111", + }, + { + "type": "URL", + "value": "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + }, + ], + "severity": "MEDIUM", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'NodeInfo/kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0056", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0056", + ], + }, + "category": "Misconfiguration", + "description": "Ensure that the container network interface file has permissions of 600 or more restrictive.", + "location": "Kind: 'NodeInfo' / Name: 'kind-control-plane'", + "mitigation": "Change the container network interface file path/to/cni/files permissions of 600 or more restrictive ", + "name": "Ensure that the container network interface file permissions are set to 600 or more restrictive(Ensure that the Container Network Interface specification file permissions is set to 600 or more restrictive)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0056", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'NodeInfo/kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0059", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0059", + ], + }, + "category": "Misconfiguration", + "description": "Ensure that the etcd data directory ownership is set to etcd:etcd.", + "location": "Kind: 'NodeInfo' / Name: 'kind-control-plane'", + "mitigation": "Change the etcd data directory /var/lib/etcd ownership to etcd:etcd", + "name": "Ensure that the etcd data directory ownership is set to etcd:etcd(Ensure that the etcd data directory ownership is set to etcd:etcd)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0059", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "LOW", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'NodeInfo/kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0068", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0068", + ], + }, + "category": "Misconfiguration", + "description": "Ensure that the Kubernetes PKI certificate file permission is set to 600.", + "location": "Kind: 'NodeInfo' / Name: 'kind-control-plane'", + "mitigation": "Change the Kubernetes PKI certificate file /etc/kubernetes/pki/*.crt permission to 600", + "name": "Ensure that the Kubernetes PKI certificate file permission is set to 600(Ensure that the Kubernetes PKI certificate file permission is set to 600)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0068", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'NodeInfo/kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0069", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0069", + ], + }, + "category": "Misconfiguration", + "description": "Ensure that the kubelet service file has permissions of 600 or more restrictive.", + "location": "Kind: 'NodeInfo' / Name: 'kind-control-plane'", + "mitigation": "Change the kubelet service file /etc/systemd/system/kubelet.service.d/10-kubeadm.conf permissions of 600 or more restrictive ", + "name": "Ensure that the kubelet service file permissions are set to 600 or more restrictive(Ensure that the kubelet service file permissions are set to 600 or more restrictive)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0069", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'NodeInfo/kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0075", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0075", + ], + }, + "category": "Misconfiguration", + "description": "Ensure that the certificate authorities file has permissions of 600 or more restrictive.", + "location": "Kind: 'NodeInfo' / Name: 'kind-control-plane'", + "mitigation": "Change the certificate authorities file permissions to 600 or more restrictive if exist", + "name": "Ensure that the certificate authorities file permissions are set to 600 or more restrictive(Ensure that the certificate authorities file permissions are set to 600 or more restrictive)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0075", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "HIGH", + }, + { + "attributes": { + "fixedVersion": undefined, + "foundIn": "Target: 'NodeInfo/kind-control-plane' / Class: 'config' / Type: 'kubernetes'", + "id": "KCV0077", + "installedVersion": undefined, + "packageName": undefined, + "references": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0077", + ], + }, + "category": "Misconfiguration", + "description": "Ensure that if the kubelet refers to a configuration file with the --config argument, that file has permissions of 600 or more restrictive.", + "location": "Kind: 'NodeInfo' / Name: 'kind-control-plane'", + "mitigation": "Change the kubelet config yaml permissions to 600 or more restrictive if exist", + "name": "If the kubelet config.yaml configuration file is being used validate permissions set to 600 or more restrictive(Ensure that if the kubelet refers to a configuration file with the --config argument, that file has permissions of 600 or more restrictive.)", + "references": [ + { + "type": "URL", + "value": "https://avd.aquasec.com/misconfig/kcv0077", + }, + { + "type": "URL", + "value": "https://www.cisecurity.org/benchmark/kubernetes", + }, + ], + "severity": "HIGH", + }, +] +`; diff --git a/scanners/trivy/parser/__testFiles__/juice-shop-v12.10.2-empty-results.json.license b/scanners/trivy/parser/__testFiles__/juice-shop-v12.10.2-empty-results.json.license new file mode 100644 index 0000000000..c95bc37185 --- /dev/null +++ b/scanners/trivy/parser/__testFiles__/juice-shop-v12.10.2-empty-results.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: the secureCodeBox authors + +SPDX-License-Identifier: Apache-2.0 diff --git a/scanners/trivy/parser/__testFiles__/k8s-results_unexpected-attribute.json b/scanners/trivy/parser/__testFiles__/k8s-results_unexpected-attribute.json new file mode 100644 index 0000000000..6a26dea6b5 --- /dev/null +++ b/scanners/trivy/parser/__testFiles__/k8s-results_unexpected-attribute.json @@ -0,0 +1,77 @@ +{ + "ClusterName": "", + "Resources": [ + { + "Namespace": "local-path-storage", + "Kind": "Deployment", + "Name": "local-path-provisioner", + "Results": [ + { + "Target": "docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)", + "Class": "os-pkgs", + "Type": "alpine", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2021-36159", + "PkgID": "apk-tools@2.10.5-r1", + "PkgName": "apk-tools", + "InstalledVersion": "2.10.5-r1", + "FixedVersion": "2.10.7-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36159", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Description": "libfetch before 2021-07-26, as used in apk-tools, xbps, and other products, mishandles numeric strings for the FTP and HTTP protocols. The FTP passive mode implementation allows an out-of-bounds read because strtol is used to parse the relevant numbers into address bytes. It does not check if the line ends prematurely. If it does, the for-loop condition checks for the '\\0' terminator one byte too late.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + } + }, + "References": [ + "https://github.com/freebsd/freebsd-src/commits/main/lib/libfetch", + "https://gitlab.alpinelinux.org/alpine/apk-tools/-/issues/10749", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cusers.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cusers.kafka.apache.org%3E" + ], + "PublishedDate": "2021-08-03T14:15:00Z", + "LastModifiedDate": "2021-10-18T12:19:00Z" + } + ] + } + ] + }, + { + "Namespace": "local-path-storage", + "Kind": "Deployment", + "Name": "local-path-provisioner", + "Results": [ + { + "Target": "docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)", + "Class": "os-pkgs", + "Type": "alpine", + "Secrets": [ + { + "VulnerabilityID": "CVE-a-dummy-secret-finding" + } + ] + } + ] + } + ] +} diff --git a/scanners/trivy/parser/__testFiles__/k8s-results_unexpected-attribute.json.license b/scanners/trivy/parser/__testFiles__/k8s-results_unexpected-attribute.json.license new file mode 100644 index 0000000000..c95bc37185 --- /dev/null +++ b/scanners/trivy/parser/__testFiles__/k8s-results_unexpected-attribute.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: the secureCodeBox authors + +SPDX-License-Identifier: Apache-2.0 diff --git a/scanners/trivy/parser/__testFiles__/local-k8s-scan-result.json b/scanners/trivy/parser/__testFiles__/local-k8s-scan-result.json new file mode 100644 index 0000000000..c571dcefb0 --- /dev/null +++ b/scanners/trivy/parser/__testFiles__/local-k8s-scan-result.json @@ -0,0 +1,66324 @@ +{ + "ClusterName": "", + "Resources": [ + { + "Namespace": "local-path-storage", + "Kind": "Deployment", + "Name": "local-path-provisioner", + "Results": [ + { + "Target": "docker.io/rancher/local-path-provisioner:v0.0.14 (alpine 3.12.0)", + "Class": "os-pkgs", + "Type": "alpine", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2021-36159", + "PkgID": "apk-tools@2.10.5-r1", + "PkgName": "apk-tools", + "InstalledVersion": "2.10.5-r1", + "FixedVersion": "2.10.7-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36159", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Description": "libfetch before 2021-07-26, as used in apk-tools, xbps, and other products, mishandles numeric strings for the FTP and HTTP protocols. The FTP passive mode implementation allows an out-of-bounds read because strtol is used to parse the relevant numbers into address bytes. It does not check if the line ends prematurely. If it does, the for-loop condition checks for the '\\0' terminator one byte too late.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + } + }, + "References": [ + "https://github.com/freebsd/freebsd-src/commits/main/lib/libfetch", + "https://gitlab.alpinelinux.org/alpine/apk-tools/-/issues/10749", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cusers.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cusers.kafka.apache.org%3E" + ], + "PublishedDate": "2021-08-03T14:15:00Z", + "LastModifiedDate": "2021-10-18T12:19:00Z" + }, + { + "VulnerabilityID": "CVE-2021-30139", + "PkgID": "apk-tools@2.10.5-r1", + "PkgName": "apk-tools", + "InstalledVersion": "2.10.5-r1", + "FixedVersion": "2.10.6-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-30139", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Description": "In Alpine Linux apk-tools before 2.12.5, the tarball parser allows a buffer overflow and crash.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + } + }, + "References": [ + "https://gitlab.alpinelinux.org/alpine/apk-tools/-/issues/10741", + "https://gitlab.alpinelinux.org/alpine/aports/-/issues/12606" + ], + "PublishedDate": "2021-04-21T16:15:00Z", + "LastModifiedDate": "2021-04-22T18:21:00Z" + }, + { + "VulnerabilityID": "CVE-2021-28831", + "PkgID": "busybox@1.31.1-r16", + "PkgName": "busybox", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r20", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-28831", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: invalid free or segmentation fault via malformed gzip data", + "Description": "decompress_gunzip.c in BusyBox through 1.32.1 mishandles the error bit on the huft_build result pointer, with a resultant invalid free or segmentation fault, via malformed gzip data.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-755" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-28831", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28831", + "https://git.busybox.net/busybox/commit/?id=f25d254dfd4243698c31a4f3153d4ac72aa9e9bd", + "https://lists.debian.org/debian-lts-announce/2021/04/msg00001.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UDQGJRECXFS5EZVDH2OI45FMO436AC4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z7ZIFKPRR32ZYA3WAA2NXFA3QHHOU6FJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZASBW7QRRLY5V2R44MQ4QQM4CZIDHM2U/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-28831", + "https://security.gentoo.org/glsa/202105-09", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://ubuntu.com/security/notices/USN-5179-2", + "https://www.cve.org/CVERecord?id=CVE-2021-28831" + ], + "PublishedDate": "2021-03-19T05:15:00Z", + "LastModifiedDate": "2022-05-20T20:56:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42378", + "PkgID": "busybox@1.31.1-r16", + "PkgName": "busybox", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42378", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_i()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_i function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42378", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42378", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42378", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42378" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42379", + "PkgID": "busybox@1.31.1-r16", + "PkgName": "busybox", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42379", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the next_input_file()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the next_input_file function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42379", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42379", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42379", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42379" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42380", + "PkgID": "busybox@1.31.1-r16", + "PkgName": "busybox", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42380", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the clrvar()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the clrvar function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42380", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42380", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42380", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42380" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42381", + "PkgID": "busybox@1.31.1-r16", + "PkgName": "busybox", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42381", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the hash_init()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the hash_init function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42381", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42381", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42381", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42381" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42382", + "PkgID": "busybox@1.31.1-r16", + "PkgName": "busybox", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42382", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_s()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_s function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42382", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42382", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42382", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42382" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42383", + "PkgID": "busybox@1.31.1-r16", + "PkgName": "busybox", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42383", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42383", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42383", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-42383" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42384", + "PkgID": "busybox@1.31.1-r16", + "PkgName": "busybox", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42384", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the handle_special()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the handle_special function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42384", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42384", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42384", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42384" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42385", + "PkgID": "busybox@1.31.1-r16", + "PkgName": "busybox", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42385", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42385", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42385", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42385", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42385" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42386", + "PkgID": "busybox@1.31.1-r16", + "PkgName": "busybox", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42386", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the nvalloc()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the nvalloc function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42386", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42386", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42386", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42386" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-28391", + "PkgID": "busybox@1.31.1-r16", + "PkgName": "busybox", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r22", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-28391", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: remote attackers may execute arbitrary code if netstat is used", + "Description": "BusyBox through 1.35.0 allows remote attackers to execute arbitrary code if netstat is used to print a DNS PTR record's value to a VT compatible terminal. Alternatively, the attacker could choose to change the terminal's colors.", + "Severity": "HIGH", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-28391", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28391", + "https://git.alpinelinux.org/aports/plain/main/busybox/0001-libbb-sockaddr2str-ensure-only-printable-characters-.patch", + "https://git.alpinelinux.org/aports/plain/main/busybox/0002-nslookup-sanitize-all-printed-strings-with-printable.patch", + "https://gitlab.alpinelinux.org/alpine/aports/-/issues/13661", + "https://nvd.nist.gov/vuln/detail/CVE-2022-28391", + "https://www.cve.org/CVERecord?id=CVE-2022-28391" + ], + "PublishedDate": "2022-04-03T21:15:00Z", + "LastModifiedDate": "2022-08-11T18:44:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42374", + "PkgID": "busybox@1.31.1-r16", + "PkgName": "busybox", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42374", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: out-of-bounds read in unlzma applet leads to information leak and denial of service when crafted LZMA-compressed input is decompressed", + "Description": "An out-of-bounds heap read in Busybox's unlzma applet leads to information leak and denial of service when crafted LZMA-compressed input is decompressed. This can be triggered by any applet/format that", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:H", + "V2Score": 3.3, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:H", + "V3Score": 5.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42374", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42374", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42374", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42374" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3711", + "PkgID": "libcrypto1.1@1.1.1g-r0", + "PkgName": "libcrypto1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1l-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3711", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: SM2 Decryption Buffer Overflow", + "Description": "In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the \"out\" parameter can be NULL and, on exit, the \"outlen\" parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the \"out\" parameter. A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small. A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer by up to a maximum of 62 bytes altering the contents of other data held after the buffer, possibly changing application behaviour or causing the application to crash. The location of the buffer is application dependent but is typically heap allocated. Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-120" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/security/cve/CVE-2021-3711", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3711", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + "https://github.com/advisories/GHSA-5ww6-px42-wc85", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + "https://rustsec.org/advisories/RUSTSEC-2021-0097.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://security.netapp.com/advisory/ntap-20211022-0003/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3711", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02" + ], + "PublishedDate": "2021-08-24T15:15:00Z", + "LastModifiedDate": "2022-12-06T21:23:00Z" + }, + { + "VulnerabilityID": "CVE-2021-23840", + "PkgID": "libcrypto1.1@1.1.1g-r0", + "PkgName": "libcrypto1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1j-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-23840", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: integer overflow in CipherUpdate", + "Description": "Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate may overflow the output length argument in some cases where the input length is close to the maximum permissable length for an integer on the platform. In such cases the return value from the function call will be 1 (indicating success), but the output length value will be negative. This could cause applications to behave incorrectly or crash. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-23840", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23840", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "https://github.com/advisories/GHSA-qgm6-9472-pwq7", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-23840.html", + "https://linux.oracle.com/errata/ELSA-2021-9561.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23840", + "https://rustsec.org/advisories/RUSTSEC-2021-0057.html", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://ubuntu.com/security/notices/USN-4738-1", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-23840", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10" + ], + "PublishedDate": "2021-02-16T17:15:00Z", + "LastModifiedDate": "2022-08-29T20:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3450", + "PkgID": "libcrypto1.1@1.1.1g-r0", + "PkgName": "libcrypto1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1k-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3450", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: CA certificate check bypass with X509_V_FLAG_X509_STRICT", + "Description": "The X509_V_FLAG_X509_STRICT flag enables additional security checks of the certificates present in a certificate chain. It is not set by default. Starting from OpenSSL version 1.1.1h a check to disallow certificates in the chain that have explicitly encoded elliptic curve parameters was added as an additional strict check. An error in the implementation of this check meant that the result of a previous check to confirm that certificates in the chain are valid CA certificates was overwritten. This effectively bypasses the check that non-CA certificates must not be able to issue other certificates. If a \"purpose\" has been configured then there is a subsequent opportunity for checks that the certificate is a valid CA. All of the named \"purpose\" values implemented in libcrypto perform this check. Therefore, where a purpose is set the certificate chain will still be rejected even when the strict flag has been used. A purpose is set by default in libssl client and server certificate verification routines, but it can be overridden or removed by an application. In order to be affected, an application must explicitly set the X509_V_FLAG_X509_STRICT verification flag and either not set a purpose for the certificate verification or, in the case of TLS client or server applications, override the default purpose. OpenSSL versions 1.1.1h and newer are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1h-1.1.1j).", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V2Score": 5.8, + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/03/27/1", + "http://www.openwall.com/lists/oss-security/2021/03/27/2", + "http://www.openwall.com/lists/oss-security/2021/03/28/3", + "http://www.openwall.com/lists/oss-security/2021/03/28/4", + "https://access.redhat.com/security/cve/CVE-2021-3450", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2a40b7bc7b94dd7de897a74571e7024f0cf0d63b", + "https://github.com/advisories/GHSA-8hfj-xrj2-pm22", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10356", + "https://linux.oracle.com/cve/CVE-2021-3450.html", + "https://linux.oracle.com/errata/ELSA-2021-9151.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + "https://mta.openssl.org/pipermail/openssl-announce/2021-March/000198.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3450", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + "https://rustsec.org/advisories/RUSTSEC-2021-0056.html", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210326-0006/", + "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + "https://www.cve.org/CVERecord?id=CVE-2021-3450", + "https://www.openssl.org/news/secadv/20210325.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-05", + "https://www.tenable.com/security/tns-2021-08", + "https://www.tenable.com/security/tns-2021-09" + ], + "PublishedDate": "2021-03-25T15:15:00Z", + "LastModifiedDate": "2023-02-28T15:19:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3712", + "PkgID": "libcrypto1.1@1.1.1g-r0", + "PkgName": "libcrypto1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1l-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3712", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: Read buffer overruns processing ASN.1 strings", + "Description": "ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own \"d2i\" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the \"data\" and \"length\" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though this is not guaranteed for strings that have been directly constructed. Where an application requests an ASN.1 structure to be printed, and where that ASN.1 structure contains ASN1_STRINGs that have been directly constructed by the application without NUL terminating the \"data\" field, then a read buffer overrun can occur. The same thing can also occur during name constraints processing of certificates (for example if a certificate has been directly constructed by the application instead of loading it via the OpenSSL parsing functions, and the certificate contains non NUL terminated ASN1_STRING structures). It can also occur in the X509_get1_email(), X509_REQ_get1_email() and X509_get1_ocsp() functions. If a malicious actor can cause an application to directly construct an ASN1_STRING and then process it through one of the affected OpenSSL functions then this issue could be hit. This might result in a crash (causing a Denial of Service attack). It could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext). Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k). Fixed in OpenSSL 1.0.2za (Affected 1.0.2-1.0.2y).", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 5.8, + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3712.json", + "https://access.redhat.com/security/cve/CVE-2021-3712", + "https://cert-portal.siemens.com/productcert/pdf/ssa-244969.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3712", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=94d23fcff9b2a7a8368dfe52214d5c2569882c11", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + "https://github.com/advisories/GHSA-q9wj-f4qw-6vfj", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-3712.html", + "https://linux.oracle.com/errata/ELSA-2022-9023.html", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00014.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", + "https://rustsec.org/advisories/RUSTSEC-2021-0098.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://ubuntu.com/security/notices/USN-5051-2", + "https://ubuntu.com/security/notices/USN-5051-3", + "https://ubuntu.com/security/notices/USN-5051-4 (regression only in trusty/esm)", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3712", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02" + ], + "PublishedDate": "2021-08-24T15:15:00Z", + "LastModifiedDate": "2022-12-06T21:23:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0778", + "PkgID": "libcrypto1.1@1.1.1g-r0", + "PkgName": "libcrypto1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1n-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0778", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: Infinite loop in BN_mod_sqrt() reachable when parsing certificates", + "Description": "The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).", + "Severity": "HIGH", + "CweIDs": [ + "CWE-835" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/167344/OpenSSL-1.0.2-1.1.1-3.0-BN_mod_sqrt-Infinite-Loop.html", + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "https://access.redhat.com/errata/RHSA-2022:5326", + "https://access.redhat.com/security/cve/CVE-2022-0778", + "https://bugzilla.redhat.com/2062202", + "https://bugzilla.redhat.com/show_bug.cgi?id=2062202", + "https://cert-portal.siemens.com/productcert/pdf/ssa-712929.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0778", + "https://errata.almalinux.org/8/ALSA-2022-5326.html", + "https://errata.rockylinux.org/RLSA-2022:4899", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3118eb64934499d93db3230748a452351d1d9a65", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=380085481c64de749a6dd25cdf0bcf4360b30f83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a466912611aa6cbdf550cd10601390e587451246", + "https://github.com/advisories/GHSA-x3mh-jvjw-3xwx", + "https://linux.oracle.com/cve/CVE-2022-0778.html", + "https://linux.oracle.com/errata/ELSA-2022-9272.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00024.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/323SNN6ZX7PRJJWP2BUAFLPUAE42XWLZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GDB3GQVJPXJE7X5C5JN6JAA4XUDWD6E6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W6K3PR542DXWLEFFMFIDMME4CWMHJRMG/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0002", + "https://rustsec.org/advisories/RUSTSEC-2022-0014.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220321-0002/", + "https://security.netapp.com/advisory/ntap-20220429-0005/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5328-1", + "https://ubuntu.com/security/notices/USN-5328-2", + "https://www.cve.org/CVERecord?id=CVE-2022-0778", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220315.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.tenable.com/security/tns-2022-06", + "https://www.tenable.com/security/tns-2022-07", + "https://www.tenable.com/security/tns-2022-08", + "https://www.tenable.com/security/tns-2022-09" + ], + "PublishedDate": "2022-03-15T17:15:00Z", + "LastModifiedDate": "2022-11-09T20:43:00Z" + }, + { + "VulnerabilityID": "CVE-2020-1971", + "PkgID": "libcrypto1.1@1.1.1g-r0", + "PkgName": "libcrypto1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1i-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1971", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: EDIPARTYNAME NULL pointer de-reference", + "Description": "The X.509 GeneralName type is a generic type for representing different types of names. One of those name types is known as EDIPartyName. OpenSSL provides a function GENERAL_NAME_cmp which compares different instances of a GENERAL_NAME to see if they are equal or not. This function behaves incorrectly when both GENERAL_NAMEs contain an EDIPARTYNAME. A NULL pointer dereference and a crash may occur leading to a possible denial of service attack. OpenSSL itself uses the GENERAL_NAME_cmp function for two purposes: 1) Comparing CRL distribution point names between an available CRL and a CRL distribution point embedded in an X509 certificate 2) When verifying that a timestamp response token signer matches the timestamp authority name (exposed via the API functions TS_RESP_verify_response and TS_RESP_verify_token) If an attacker can control both items being compared then that attacker could trigger a crash. For example if the attacker can trick a client or server into checking a malicious certificate against a malicious CRL then this may occur. Note that some applications automatically download CRLs based on a URL embedded in a certificate. This checking happens prior to the signatures on the certificate and CRL being verified. OpenSSL's s_server, s_client and verify tools have support for the \"-crl_download\" option which implements automatic CRL downloading and this attack has been demonstrated to work against those tools. Note that an unrelated bug means that affected versions of OpenSSL cannot parse or construct correct encodings of EDIPARTYNAME. However it is possible to construct a malformed EDIPARTYNAME that OpenSSL's parser will accept and hence trigger this attack. All OpenSSL 1.1.1 and 1.0.2 versions are affected by this issue. Other OpenSSL releases are out of support and have not been checked. Fixed in OpenSSL 1.1.1i (Affected 1.1.1-1.1.1h). Fixed in OpenSSL 1.0.2x (Affected 1.0.2-1.0.2w).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/09/14/2", + "https://access.redhat.com/security/cve/CVE-2020-1971", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1971", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2154ab83e14ede338d2ede9bbe5cdfce5d5a6c9e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=f960d81215ebf3f65e03d4d5d857fb9b666d6920", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44676", + "https://linux.oracle.com/cve/CVE-2020-1971.html", + "https://linux.oracle.com/errata/ELSA-2021-9150.html", + "https://lists.apache.org/thread.html/r63c6f2dd363d9b514d0a4bcf624580616a679898cc14c109a49b750c@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rbb769f771711fb274e0a4acb1b5911c8aab544a6ac5e8c12d40c5143@%3Ccommits.pulsar.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2020/12/msg00020.html", + "https://lists.debian.org/debian-lts-announce/2020/12/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DGSI34Y5LQ5RYXN4M2I5ZQT65LFVDOUU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/PWPSSZNZOBJU2YR6Z4TGHXKYW3YP5QG7/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1971", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-20:33.openssl.asc", + "https://security.gentoo.org/glsa/202012-13", + "https://security.netapp.com/advisory/ntap-20201218-0005/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://ubuntu.com/security/notices/USN-4662-1", + "https://ubuntu.com/security/notices/USN-4745-1", + "https://www.cve.org/CVERecord?id=CVE-2020-1971", + "https://www.debian.org/security/2020/dsa-4807", + "https://www.openssl.org/news/secadv/20201208.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2021.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2020-11", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10" + ], + "PublishedDate": "2020-12-08T16:15:00Z", + "LastModifiedDate": "2022-08-29T20:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-23841", + "PkgID": "libcrypto1.1@1.1.1g-r0", + "PkgName": "libcrypto1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1j-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-23841", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: NULL pointer dereference in X509_issuer_and_serial_hash()", + "Description": "The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2021/May/67", + "http://seclists.org/fulldisclosure/2021/May/68", + "http://seclists.org/fulldisclosure/2021/May/70", + "https://access.redhat.com/security/cve/CVE-2021-23841", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23841", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "https://github.com/advisories/GHSA-84rm-qf37-fgc2", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://linux.oracle.com/cve/CVE-2021-23841.html", + "https://linux.oracle.com/errata/ELSA-2021-9561.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23841", + "https://rustsec.org/advisories/RUSTSEC-2021-0058", + "https://rustsec.org/advisories/RUSTSEC-2021-0058.html", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://support.apple.com/kb/HT212528", + "https://support.apple.com/kb/HT212529", + "https://support.apple.com/kb/HT212534", + "https://ubuntu.com/security/notices/USN-4738-1", + "https://ubuntu.com/security/notices/USN-4745-1", + "https://www.cve.org/CVERecord?id=CVE-2021-23841", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09" + ], + "PublishedDate": "2021-02-16T17:15:00Z", + "LastModifiedDate": "2023-01-09T16:41:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3449", + "PkgID": "libcrypto1.1@1.1.1g-r0", + "PkgName": "libcrypto1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1k-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3449", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: NULL pointer dereference in signature_algorithms processing", + "Description": "An OpenSSL TLS server may crash if sent a maliciously crafted renegotiation ClientHello message from a client. If a TLSv1.2 renegotiation ClientHello omits the signature_algorithms extension (where it was present in the initial ClientHello), but includes a signature_algorithms_cert extension then a NULL pointer dereference will result, leading to a crash and a denial of service attack. A server is only vulnerable if it has TLSv1.2 and renegotiation enabled (which is the default configuration). OpenSSL TLS clients are not impacted by this issue. All OpenSSL 1.1.1 versions are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1-1.1.1j).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/03/27/1", + "http://www.openwall.com/lists/oss-security/2021/03/27/2", + "http://www.openwall.com/lists/oss-security/2021/03/28/3", + "http://www.openwall.com/lists/oss-security/2021/03/28/4", + "https://access.redhat.com/security/cve/CVE-2021-3449", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-772220.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3449", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fb9fa6b51defd48157eeb207f52181f735d96148", + "https://github.com/advisories/GHSA-83mx-573x-5rw9", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10356", + "https://linux.oracle.com/cve/CVE-2021-3449.html", + "https://linux.oracle.com/errata/ELSA-2021-9151.html", + "https://lists.debian.org/debian-lts-announce/2021/08/msg00029.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3449", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + "https://rustsec.org/advisories/RUSTSEC-2021-0055", + "https://rustsec.org/advisories/RUSTSEC-2021-0055.html", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210326-0006/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + "https://ubuntu.com/security/notices/USN-4891-1", + "https://ubuntu.com/security/notices/USN-5038-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3449", + "https://www.debian.org/security/2021/dsa-4875", + "https://www.openssl.org/news/secadv/20210325.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-05", + "https://www.tenable.com/security/tns-2021-06", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10" + ], + "PublishedDate": "2021-03-25T15:15:00Z", + "LastModifiedDate": "2022-08-29T20:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-23839", + "PkgID": "libcrypto1.1@1.1.1g-r0", + "PkgName": "libcrypto1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1j-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-23839", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: incorrect SSLv2 rollback protection", + "Description": "OpenSSL 1.0.2 supports SSLv2. If a client attempts to negotiate SSLv2 with a server that is configured to support both SSLv2 and more recent SSL and TLS versions then a check is made for a version rollback attack when unpadding an RSA signature. Clients that support SSL or TLS versions greater than SSLv2 are supposed to use a special form of padding. A server that supports greater than SSLv2 is supposed to reject connection attempts from a client where this special form of padding is present, because this indicates that a version rollback has occurred (i.e. both client and server support greater than SSLv2, and yet this is the version that is being requested). The implementation of this padding check inverted the logic so that the connection attempt is accepted if the padding is present, and rejected if it is absent. This means that such as server will accept a connection if a version rollback attack has occurred. Further the server will erroneously reject a connection if a normal SSLv2 connection attempt is made. Only OpenSSL 1.0.2 servers from version 1.0.2s to 1.0.2x are affected by this issue. In order to be vulnerable a 1.0.2 server must: 1) have configured SSLv2 support at compile time (this is off by default), 2) have configured SSLv2 support at runtime (this is off by default), 3) have configured SSLv2 ciphersuites (these are not in the default ciphersuite list) OpenSSL 1.1.1 does not have SSLv2 support and therefore is not vulnerable to this issue. The underlying error is in the implementation of the RSA_padding_check_SSLv23() function. This also affects the RSA_SSLV23_PADDING padding mode used by various other functions. Although 1.1.1 does not support SSLv2 the RSA_padding_check_SSLv23() function still exists, as does the RSA_SSLV23_PADDING padding mode. Applications that directly call that function or use that padding mode will encounter this issue. However since there is no support for the SSLv2 protocol in 1.1.1 this is considered a bug and not a security issue in that version. OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.0.2y (Affected 1.0.2s-1.0.2x).", + "Severity": "LOW", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-23839", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=30919ab80a478f2d81f2e9acdcca3fa4740cd547", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23839", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://www.cve.org/CVERecord?id=CVE-2021-23839", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-02-16T17:15:00Z", + "LastModifiedDate": "2022-10-29T02:48:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3711", + "PkgID": "libssl1.1@1.1.1g-r0", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1l-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3711", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: SM2 Decryption Buffer Overflow", + "Description": "In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the \"out\" parameter can be NULL and, on exit, the \"outlen\" parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the \"out\" parameter. A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small. A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer by up to a maximum of 62 bytes altering the contents of other data held after the buffer, possibly changing application behaviour or causing the application to crash. The location of the buffer is application dependent but is typically heap allocated. Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-120" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/security/cve/CVE-2021-3711", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3711", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + "https://github.com/advisories/GHSA-5ww6-px42-wc85", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + "https://rustsec.org/advisories/RUSTSEC-2021-0097.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://security.netapp.com/advisory/ntap-20211022-0003/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3711", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02" + ], + "PublishedDate": "2021-08-24T15:15:00Z", + "LastModifiedDate": "2022-12-06T21:23:00Z" + }, + { + "VulnerabilityID": "CVE-2021-23840", + "PkgID": "libssl1.1@1.1.1g-r0", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1j-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-23840", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: integer overflow in CipherUpdate", + "Description": "Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate may overflow the output length argument in some cases where the input length is close to the maximum permissable length for an integer on the platform. In such cases the return value from the function call will be 1 (indicating success), but the output length value will be negative. This could cause applications to behave incorrectly or crash. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-23840", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23840", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "https://github.com/advisories/GHSA-qgm6-9472-pwq7", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-23840.html", + "https://linux.oracle.com/errata/ELSA-2021-9561.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23840", + "https://rustsec.org/advisories/RUSTSEC-2021-0057.html", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://ubuntu.com/security/notices/USN-4738-1", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-23840", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10" + ], + "PublishedDate": "2021-02-16T17:15:00Z", + "LastModifiedDate": "2022-08-29T20:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3450", + "PkgID": "libssl1.1@1.1.1g-r0", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1k-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3450", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: CA certificate check bypass with X509_V_FLAG_X509_STRICT", + "Description": "The X509_V_FLAG_X509_STRICT flag enables additional security checks of the certificates present in a certificate chain. It is not set by default. Starting from OpenSSL version 1.1.1h a check to disallow certificates in the chain that have explicitly encoded elliptic curve parameters was added as an additional strict check. An error in the implementation of this check meant that the result of a previous check to confirm that certificates in the chain are valid CA certificates was overwritten. This effectively bypasses the check that non-CA certificates must not be able to issue other certificates. If a \"purpose\" has been configured then there is a subsequent opportunity for checks that the certificate is a valid CA. All of the named \"purpose\" values implemented in libcrypto perform this check. Therefore, where a purpose is set the certificate chain will still be rejected even when the strict flag has been used. A purpose is set by default in libssl client and server certificate verification routines, but it can be overridden or removed by an application. In order to be affected, an application must explicitly set the X509_V_FLAG_X509_STRICT verification flag and either not set a purpose for the certificate verification or, in the case of TLS client or server applications, override the default purpose. OpenSSL versions 1.1.1h and newer are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1h-1.1.1j).", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V2Score": 5.8, + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/03/27/1", + "http://www.openwall.com/lists/oss-security/2021/03/27/2", + "http://www.openwall.com/lists/oss-security/2021/03/28/3", + "http://www.openwall.com/lists/oss-security/2021/03/28/4", + "https://access.redhat.com/security/cve/CVE-2021-3450", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2a40b7bc7b94dd7de897a74571e7024f0cf0d63b", + "https://github.com/advisories/GHSA-8hfj-xrj2-pm22", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10356", + "https://linux.oracle.com/cve/CVE-2021-3450.html", + "https://linux.oracle.com/errata/ELSA-2021-9151.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + "https://mta.openssl.org/pipermail/openssl-announce/2021-March/000198.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3450", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + "https://rustsec.org/advisories/RUSTSEC-2021-0056.html", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210326-0006/", + "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + "https://www.cve.org/CVERecord?id=CVE-2021-3450", + "https://www.openssl.org/news/secadv/20210325.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-05", + "https://www.tenable.com/security/tns-2021-08", + "https://www.tenable.com/security/tns-2021-09" + ], + "PublishedDate": "2021-03-25T15:15:00Z", + "LastModifiedDate": "2023-02-28T15:19:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3712", + "PkgID": "libssl1.1@1.1.1g-r0", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1l-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3712", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: Read buffer overruns processing ASN.1 strings", + "Description": "ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own \"d2i\" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the \"data\" and \"length\" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though this is not guaranteed for strings that have been directly constructed. Where an application requests an ASN.1 structure to be printed, and where that ASN.1 structure contains ASN1_STRINGs that have been directly constructed by the application without NUL terminating the \"data\" field, then a read buffer overrun can occur. The same thing can also occur during name constraints processing of certificates (for example if a certificate has been directly constructed by the application instead of loading it via the OpenSSL parsing functions, and the certificate contains non NUL terminated ASN1_STRING structures). It can also occur in the X509_get1_email(), X509_REQ_get1_email() and X509_get1_ocsp() functions. If a malicious actor can cause an application to directly construct an ASN1_STRING and then process it through one of the affected OpenSSL functions then this issue could be hit. This might result in a crash (causing a Denial of Service attack). It could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext). Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k). Fixed in OpenSSL 1.0.2za (Affected 1.0.2-1.0.2y).", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 5.8, + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3712.json", + "https://access.redhat.com/security/cve/CVE-2021-3712", + "https://cert-portal.siemens.com/productcert/pdf/ssa-244969.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3712", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=94d23fcff9b2a7a8368dfe52214d5c2569882c11", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + "https://github.com/advisories/GHSA-q9wj-f4qw-6vfj", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-3712.html", + "https://linux.oracle.com/errata/ELSA-2022-9023.html", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00014.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", + "https://rustsec.org/advisories/RUSTSEC-2021-0098.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://ubuntu.com/security/notices/USN-5051-2", + "https://ubuntu.com/security/notices/USN-5051-3", + "https://ubuntu.com/security/notices/USN-5051-4 (regression only in trusty/esm)", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3712", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02" + ], + "PublishedDate": "2021-08-24T15:15:00Z", + "LastModifiedDate": "2022-12-06T21:23:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0778", + "PkgID": "libssl1.1@1.1.1g-r0", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1n-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0778", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: Infinite loop in BN_mod_sqrt() reachable when parsing certificates", + "Description": "The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).", + "Severity": "HIGH", + "CweIDs": [ + "CWE-835" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/167344/OpenSSL-1.0.2-1.1.1-3.0-BN_mod_sqrt-Infinite-Loop.html", + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "https://access.redhat.com/errata/RHSA-2022:5326", + "https://access.redhat.com/security/cve/CVE-2022-0778", + "https://bugzilla.redhat.com/2062202", + "https://bugzilla.redhat.com/show_bug.cgi?id=2062202", + "https://cert-portal.siemens.com/productcert/pdf/ssa-712929.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0778", + "https://errata.almalinux.org/8/ALSA-2022-5326.html", + "https://errata.rockylinux.org/RLSA-2022:4899", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3118eb64934499d93db3230748a452351d1d9a65", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=380085481c64de749a6dd25cdf0bcf4360b30f83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a466912611aa6cbdf550cd10601390e587451246", + "https://github.com/advisories/GHSA-x3mh-jvjw-3xwx", + "https://linux.oracle.com/cve/CVE-2022-0778.html", + "https://linux.oracle.com/errata/ELSA-2022-9272.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00024.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/323SNN6ZX7PRJJWP2BUAFLPUAE42XWLZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GDB3GQVJPXJE7X5C5JN6JAA4XUDWD6E6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W6K3PR542DXWLEFFMFIDMME4CWMHJRMG/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0002", + "https://rustsec.org/advisories/RUSTSEC-2022-0014.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220321-0002/", + "https://security.netapp.com/advisory/ntap-20220429-0005/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5328-1", + "https://ubuntu.com/security/notices/USN-5328-2", + "https://www.cve.org/CVERecord?id=CVE-2022-0778", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220315.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.tenable.com/security/tns-2022-06", + "https://www.tenable.com/security/tns-2022-07", + "https://www.tenable.com/security/tns-2022-08", + "https://www.tenable.com/security/tns-2022-09" + ], + "PublishedDate": "2022-03-15T17:15:00Z", + "LastModifiedDate": "2022-11-09T20:43:00Z" + }, + { + "VulnerabilityID": "CVE-2020-1971", + "PkgID": "libssl1.1@1.1.1g-r0", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1i-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1971", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: EDIPARTYNAME NULL pointer de-reference", + "Description": "The X.509 GeneralName type is a generic type for representing different types of names. One of those name types is known as EDIPartyName. OpenSSL provides a function GENERAL_NAME_cmp which compares different instances of a GENERAL_NAME to see if they are equal or not. This function behaves incorrectly when both GENERAL_NAMEs contain an EDIPARTYNAME. A NULL pointer dereference and a crash may occur leading to a possible denial of service attack. OpenSSL itself uses the GENERAL_NAME_cmp function for two purposes: 1) Comparing CRL distribution point names between an available CRL and a CRL distribution point embedded in an X509 certificate 2) When verifying that a timestamp response token signer matches the timestamp authority name (exposed via the API functions TS_RESP_verify_response and TS_RESP_verify_token) If an attacker can control both items being compared then that attacker could trigger a crash. For example if the attacker can trick a client or server into checking a malicious certificate against a malicious CRL then this may occur. Note that some applications automatically download CRLs based on a URL embedded in a certificate. This checking happens prior to the signatures on the certificate and CRL being verified. OpenSSL's s_server, s_client and verify tools have support for the \"-crl_download\" option which implements automatic CRL downloading and this attack has been demonstrated to work against those tools. Note that an unrelated bug means that affected versions of OpenSSL cannot parse or construct correct encodings of EDIPARTYNAME. However it is possible to construct a malformed EDIPARTYNAME that OpenSSL's parser will accept and hence trigger this attack. All OpenSSL 1.1.1 and 1.0.2 versions are affected by this issue. Other OpenSSL releases are out of support and have not been checked. Fixed in OpenSSL 1.1.1i (Affected 1.1.1-1.1.1h). Fixed in OpenSSL 1.0.2x (Affected 1.0.2-1.0.2w).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/09/14/2", + "https://access.redhat.com/security/cve/CVE-2020-1971", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1971", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2154ab83e14ede338d2ede9bbe5cdfce5d5a6c9e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=f960d81215ebf3f65e03d4d5d857fb9b666d6920", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44676", + "https://linux.oracle.com/cve/CVE-2020-1971.html", + "https://linux.oracle.com/errata/ELSA-2021-9150.html", + "https://lists.apache.org/thread.html/r63c6f2dd363d9b514d0a4bcf624580616a679898cc14c109a49b750c@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rbb769f771711fb274e0a4acb1b5911c8aab544a6ac5e8c12d40c5143@%3Ccommits.pulsar.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2020/12/msg00020.html", + "https://lists.debian.org/debian-lts-announce/2020/12/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DGSI34Y5LQ5RYXN4M2I5ZQT65LFVDOUU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/PWPSSZNZOBJU2YR6Z4TGHXKYW3YP5QG7/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1971", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-20:33.openssl.asc", + "https://security.gentoo.org/glsa/202012-13", + "https://security.netapp.com/advisory/ntap-20201218-0005/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://ubuntu.com/security/notices/USN-4662-1", + "https://ubuntu.com/security/notices/USN-4745-1", + "https://www.cve.org/CVERecord?id=CVE-2020-1971", + "https://www.debian.org/security/2020/dsa-4807", + "https://www.openssl.org/news/secadv/20201208.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2021.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2020-11", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10" + ], + "PublishedDate": "2020-12-08T16:15:00Z", + "LastModifiedDate": "2022-08-29T20:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-23841", + "PkgID": "libssl1.1@1.1.1g-r0", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1j-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-23841", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: NULL pointer dereference in X509_issuer_and_serial_hash()", + "Description": "The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2021/May/67", + "http://seclists.org/fulldisclosure/2021/May/68", + "http://seclists.org/fulldisclosure/2021/May/70", + "https://access.redhat.com/security/cve/CVE-2021-23841", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23841", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "https://github.com/advisories/GHSA-84rm-qf37-fgc2", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://linux.oracle.com/cve/CVE-2021-23841.html", + "https://linux.oracle.com/errata/ELSA-2021-9561.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23841", + "https://rustsec.org/advisories/RUSTSEC-2021-0058", + "https://rustsec.org/advisories/RUSTSEC-2021-0058.html", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://support.apple.com/kb/HT212528", + "https://support.apple.com/kb/HT212529", + "https://support.apple.com/kb/HT212534", + "https://ubuntu.com/security/notices/USN-4738-1", + "https://ubuntu.com/security/notices/USN-4745-1", + "https://www.cve.org/CVERecord?id=CVE-2021-23841", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09" + ], + "PublishedDate": "2021-02-16T17:15:00Z", + "LastModifiedDate": "2023-01-09T16:41:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3449", + "PkgID": "libssl1.1@1.1.1g-r0", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1k-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3449", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: NULL pointer dereference in signature_algorithms processing", + "Description": "An OpenSSL TLS server may crash if sent a maliciously crafted renegotiation ClientHello message from a client. If a TLSv1.2 renegotiation ClientHello omits the signature_algorithms extension (where it was present in the initial ClientHello), but includes a signature_algorithms_cert extension then a NULL pointer dereference will result, leading to a crash and a denial of service attack. A server is only vulnerable if it has TLSv1.2 and renegotiation enabled (which is the default configuration). OpenSSL TLS clients are not impacted by this issue. All OpenSSL 1.1.1 versions are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1-1.1.1j).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/03/27/1", + "http://www.openwall.com/lists/oss-security/2021/03/27/2", + "http://www.openwall.com/lists/oss-security/2021/03/28/3", + "http://www.openwall.com/lists/oss-security/2021/03/28/4", + "https://access.redhat.com/security/cve/CVE-2021-3449", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-772220.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3449", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fb9fa6b51defd48157eeb207f52181f735d96148", + "https://github.com/advisories/GHSA-83mx-573x-5rw9", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10356", + "https://linux.oracle.com/cve/CVE-2021-3449.html", + "https://linux.oracle.com/errata/ELSA-2021-9151.html", + "https://lists.debian.org/debian-lts-announce/2021/08/msg00029.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3449", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + "https://rustsec.org/advisories/RUSTSEC-2021-0055", + "https://rustsec.org/advisories/RUSTSEC-2021-0055.html", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210326-0006/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + "https://ubuntu.com/security/notices/USN-4891-1", + "https://ubuntu.com/security/notices/USN-5038-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3449", + "https://www.debian.org/security/2021/dsa-4875", + "https://www.openssl.org/news/secadv/20210325.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-05", + "https://www.tenable.com/security/tns-2021-06", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10" + ], + "PublishedDate": "2021-03-25T15:15:00Z", + "LastModifiedDate": "2022-08-29T20:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-23839", + "PkgID": "libssl1.1@1.1.1g-r0", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1g-r0", + "FixedVersion": "1.1.1j-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-23839", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "openssl: incorrect SSLv2 rollback protection", + "Description": "OpenSSL 1.0.2 supports SSLv2. If a client attempts to negotiate SSLv2 with a server that is configured to support both SSLv2 and more recent SSL and TLS versions then a check is made for a version rollback attack when unpadding an RSA signature. Clients that support SSL or TLS versions greater than SSLv2 are supposed to use a special form of padding. A server that supports greater than SSLv2 is supposed to reject connection attempts from a client where this special form of padding is present, because this indicates that a version rollback has occurred (i.e. both client and server support greater than SSLv2, and yet this is the version that is being requested). The implementation of this padding check inverted the logic so that the connection attempt is accepted if the padding is present, and rejected if it is absent. This means that such as server will accept a connection if a version rollback attack has occurred. Further the server will erroneously reject a connection if a normal SSLv2 connection attempt is made. Only OpenSSL 1.0.2 servers from version 1.0.2s to 1.0.2x are affected by this issue. In order to be vulnerable a 1.0.2 server must: 1) have configured SSLv2 support at compile time (this is off by default), 2) have configured SSLv2 support at runtime (this is off by default), 3) have configured SSLv2 ciphersuites (these are not in the default ciphersuite list) OpenSSL 1.1.1 does not have SSLv2 support and therefore is not vulnerable to this issue. The underlying error is in the implementation of the RSA_padding_check_SSLv23() function. This also affects the RSA_SSLV23_PADDING padding mode used by various other functions. Although 1.1.1 does not support SSLv2 the RSA_padding_check_SSLv23() function still exists, as does the RSA_SSLV23_PADDING padding mode. Applications that directly call that function or use that padding mode will encounter this issue. However since there is no support for the SSLv2 protocol in 1.1.1 this is considered a bug and not a security issue in that version. OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.0.2y (Affected 1.0.2s-1.0.2x).", + "Severity": "LOW", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-23839", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=30919ab80a478f2d81f2e9acdcca3fa4740cd547", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23839", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://www.cve.org/CVERecord?id=CVE-2021-23839", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-02-16T17:15:00Z", + "LastModifiedDate": "2022-10-29T02:48:00Z" + }, + { + "VulnerabilityID": "CVE-2020-28928", + "PkgID": "musl@1.1.24-r8", + "PkgName": "musl", + "InstalledVersion": "1.1.24-r8", + "FixedVersion": "1.1.24-r10", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-28928", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "In musl libc through 1.2.1, wcsnrtombs mishandles particular combinati ...", + "Description": "In musl libc through 1.2.1, wcsnrtombs mishandles particular combinations of destination buffer size and source character limit, as demonstrated by an invalid write access (buffer overflow).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2020/11/20/4", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28928", + "https://lists.apache.org/thread.html/r2134abfe847bea7795f0e53756d10a47e6643f35ab8169df8b8a9eb1@%3Cnotifications.apisix.apache.org%3E", + "https://lists.apache.org/thread.html/r90b60cf49348e515257b4950900c1bd3ab95a960cf2469d919c7264e@%3Cnotifications.apisix.apache.org%3E", + "https://lists.apache.org/thread.html/ra63e8dc5137d952afc55dbbfa63be83304ecf842d1eab1ff3ebb29e2@%3Cnotifications.apisix.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2020/11/msg00050.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LKQ3RVSMVZNZNO4D65W2CZZ4DMYFZN2Q/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UW27QVY7ERPTSGKS4KAWE5TU7EJWHKVQ/", + "https://musl.libc.org/releases.html", + "https://ubuntu.com/security/notices/USN-5990-1", + "https://www.openwall.com/lists/oss-security/2020/11/20/4", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2020-11-24T18:15:00Z", + "LastModifiedDate": "2021-12-02T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2020-28928", + "PkgID": "musl-utils@1.1.24-r8", + "PkgName": "musl-utils", + "InstalledVersion": "1.1.24-r8", + "FixedVersion": "1.1.24-r10", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-28928", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "In musl libc through 1.2.1, wcsnrtombs mishandles particular combinati ...", + "Description": "In musl libc through 1.2.1, wcsnrtombs mishandles particular combinations of destination buffer size and source character limit, as demonstrated by an invalid write access (buffer overflow).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2020/11/20/4", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28928", + "https://lists.apache.org/thread.html/r2134abfe847bea7795f0e53756d10a47e6643f35ab8169df8b8a9eb1@%3Cnotifications.apisix.apache.org%3E", + "https://lists.apache.org/thread.html/r90b60cf49348e515257b4950900c1bd3ab95a960cf2469d919c7264e@%3Cnotifications.apisix.apache.org%3E", + "https://lists.apache.org/thread.html/ra63e8dc5137d952afc55dbbfa63be83304ecf842d1eab1ff3ebb29e2@%3Cnotifications.apisix.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2020/11/msg00050.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/LKQ3RVSMVZNZNO4D65W2CZZ4DMYFZN2Q/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UW27QVY7ERPTSGKS4KAWE5TU7EJWHKVQ/", + "https://musl.libc.org/releases.html", + "https://ubuntu.com/security/notices/USN-5990-1", + "https://www.openwall.com/lists/oss-security/2020/11/20/4", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2020-11-24T18:15:00Z", + "LastModifiedDate": "2021-12-02T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-28831", + "PkgID": "ssl_client@1.31.1-r16", + "PkgName": "ssl_client", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r20", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-28831", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: invalid free or segmentation fault via malformed gzip data", + "Description": "decompress_gunzip.c in BusyBox through 1.32.1 mishandles the error bit on the huft_build result pointer, with a resultant invalid free or segmentation fault, via malformed gzip data.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-755" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-28831", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28831", + "https://git.busybox.net/busybox/commit/?id=f25d254dfd4243698c31a4f3153d4ac72aa9e9bd", + "https://lists.debian.org/debian-lts-announce/2021/04/msg00001.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UDQGJRECXFS5EZVDH2OI45FMO436AC4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z7ZIFKPRR32ZYA3WAA2NXFA3QHHOU6FJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZASBW7QRRLY5V2R44MQ4QQM4CZIDHM2U/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-28831", + "https://security.gentoo.org/glsa/202105-09", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://ubuntu.com/security/notices/USN-5179-2", + "https://www.cve.org/CVERecord?id=CVE-2021-28831" + ], + "PublishedDate": "2021-03-19T05:15:00Z", + "LastModifiedDate": "2022-05-20T20:56:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42378", + "PkgID": "ssl_client@1.31.1-r16", + "PkgName": "ssl_client", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42378", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_i()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_i function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42378", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42378", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42378", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42378" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42379", + "PkgID": "ssl_client@1.31.1-r16", + "PkgName": "ssl_client", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42379", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the next_input_file()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the next_input_file function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42379", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42379", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42379", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42379" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42380", + "PkgID": "ssl_client@1.31.1-r16", + "PkgName": "ssl_client", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42380", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the clrvar()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the clrvar function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42380", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42380", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42380", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42380" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42381", + "PkgID": "ssl_client@1.31.1-r16", + "PkgName": "ssl_client", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42381", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the hash_init()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the hash_init function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42381", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42381", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42381", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42381" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42382", + "PkgID": "ssl_client@1.31.1-r16", + "PkgName": "ssl_client", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42382", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_s()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the getvar_s function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42382", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42382", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42382", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42382" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42383", + "PkgID": "ssl_client@1.31.1-r16", + "PkgName": "ssl_client", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42383", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42383", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42383", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-42383" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42384", + "PkgID": "ssl_client@1.31.1-r16", + "PkgName": "ssl_client", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42384", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the handle_special()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the handle_special function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42384", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42384", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42384", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42384" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42385", + "PkgID": "ssl_client@1.31.1-r16", + "PkgName": "ssl_client", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42385", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the evaluate function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42385", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42385", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42385", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42385" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42386", + "PkgID": "ssl_client@1.31.1-r16", + "PkgName": "ssl_client", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42386", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: use-after-free in awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the nvalloc()", + "Description": "A use-after-free in Busybox's awk applet leads to denial of service and possibly code execution when processing a crafted awk pattern in the nvalloc function", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.5, + "V3Score": 7.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42386", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42386", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42386", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42386" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-28391", + "PkgID": "ssl_client@1.31.1-r16", + "PkgName": "ssl_client", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r22", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-28391", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: remote attackers may execute arbitrary code if netstat is used", + "Description": "BusyBox through 1.35.0 allows remote attackers to execute arbitrary code if netstat is used to print a DNS PTR record's value to a VT compatible terminal. Alternatively, the attacker could choose to change the terminal's colors.", + "Severity": "HIGH", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-28391", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28391", + "https://git.alpinelinux.org/aports/plain/main/busybox/0001-libbb-sockaddr2str-ensure-only-printable-characters-.patch", + "https://git.alpinelinux.org/aports/plain/main/busybox/0002-nslookup-sanitize-all-printed-strings-with-printable.patch", + "https://gitlab.alpinelinux.org/alpine/aports/-/issues/13661", + "https://nvd.nist.gov/vuln/detail/CVE-2022-28391", + "https://www.cve.org/CVERecord?id=CVE-2022-28391" + ], + "PublishedDate": "2022-04-03T21:15:00Z", + "LastModifiedDate": "2022-08-11T18:44:00Z" + }, + { + "VulnerabilityID": "CVE-2021-42374", + "PkgID": "ssl_client@1.31.1-r16", + "PkgName": "ssl_client", + "InstalledVersion": "1.31.1-r16", + "FixedVersion": "1.31.1-r21", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-42374", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "busybox: out-of-bounds read in unlzma applet leads to information leak and denial of service when crafted LZMA-compressed input is decompressed", + "Description": "An out-of-bounds heap read in Busybox's unlzma applet leads to information leak and denial of service when crafted LZMA-compressed input is decompressed. This can be triggered by any applet/format that", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:H", + "V2Score": 3.3, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:H", + "V3Score": 5.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-42374", + "https://claroty.com/team82/research/unboxing-busybox-14-vulnerabilities-uncovered-by-claroty-jfrog", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42374", + "https://jfrog.com/blog/unboxing-busybox-14-new-vulnerabilities-uncovered-by-claroty-and-jfrog/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6T2TURBYYJGBMQTTN2DSOAIQGP7WCPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UQXGOGWBIYWOIVXJVRKHZR34UMEHQBXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-42374", + "https://security.netapp.com/advisory/ntap-20211223-0002/", + "https://ubuntu.com/security/notices/USN-5179-1", + "https://www.cve.org/CVERecord?id=CVE-2021-42374" + ], + "PublishedDate": "2021-11-15T21:15:00Z", + "LastModifiedDate": "2023-04-25T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-37434", + "PkgID": "zlib@1.2.11-r3", + "PkgName": "zlib", + "InstalledVersion": "1.2.11-r3", + "FixedVersion": "1.2.12-r2", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-37434", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "heap-based buffer over-read and overflow in inflate() in inflate.c via a large gzip header extra field", + "Description": "zlib through 1.2.12 has a heap-based buffer over-read or buffer overflow in inflate in inflate.c via a large gzip header extra field. NOTE: only applications that call inflateGetHeader are affected. Some common applications bundle the affected zlib source code but may be unable to call inflateGetHeader (e.g., see the nodejs/node reference).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/37", + "http://seclists.org/fulldisclosure/2022/Oct/38", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/42", + "http://www.openwall.com/lists/oss-security/2022/08/05/2", + "http://www.openwall.com/lists/oss-security/2022/08/09/1", + "https://access.redhat.com/errata/RHSA-2022:8291", + "https://access.redhat.com/security/cve/CVE-2022-37434", + "https://bugzilla.redhat.com/2116639", + "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + "https://errata.almalinux.org/9/ALSA-2022-8291.html", + "https://errata.rockylinux.org/RLSA-2022:8291", + "https://github.com/curl/curl/issues/9271", + "https://github.com/ivd38/zlib_overflow", + "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + "https://linux.oracle.com/cve/CVE-2022-37434.html", + "https://linux.oracle.com/errata/ELSA-2023-1095.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + "https://security.netapp.com/advisory/ntap-20220901-0005/", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://support.apple.com/kb/HT213488", + "https://support.apple.com/kb/HT213489", + "https://support.apple.com/kb/HT213490", + "https://support.apple.com/kb/HT213491", + "https://support.apple.com/kb/HT213493", + "https://support.apple.com/kb/HT213494", + "https://ubuntu.com/security/notices/USN-5570-1", + "https://ubuntu.com/security/notices/USN-5570-2", + "https://ubuntu.com/security/notices/USN-5573-1", + "https://www.cve.org/CVERecord?id=CVE-2022-37434", + "https://www.debian.org/security/2022/dsa-5218" + ], + "PublishedDate": "2022-08-05T07:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-25032", + "PkgID": "zlib@1.2.11-r3", + "PkgName": "zlib", + "InstalledVersion": "1.2.11-r3", + "FixedVersion": "1.2.12-r0", + "Layer": { + "Digest": "sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c", + "DiffID": "sha256:50644c29ef5a27c9a40c393a73ece2479de78325cae7d762ef3cdc19bf42dd0a" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-25032", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "A flaw found in zlib when compressing (not decompressing) certain inputs", + "Description": "zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H", + "V3Score": 8.2 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "http://www.openwall.com/lists/oss-security/2022/03/25/2", + "http://www.openwall.com/lists/oss-security/2022/03/26/1", + "https://access.redhat.com/errata/RHSA-2022:8420", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + "https://access.redhat.com/security/cve/CVE-2018-25032", + "https://bugzilla.redhat.com/2067945", + "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + "https://errata.almalinux.org/9/ALSA-2022-8420.html", + "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + "https://github.com/madler/zlib/issues/605", + "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + "https://linux.oracle.com/cve/CVE-2018-25032.html", + "https://linux.oracle.com/errata/ELSA-2022-9565.html", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + "https://security.gentoo.org/glsa/202210-42", + "https://security.netapp.com/advisory/ntap-20220526-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5355-1", + "https://ubuntu.com/security/notices/USN-5355-2", + "https://ubuntu.com/security/notices/USN-5359-1", + "https://ubuntu.com/security/notices/USN-5359-2", + "https://ubuntu.com/security/notices/USN-5739-1", + "https://www.cve.org/CVERecord?id=CVE-2018-25032", + "https://www.debian.org/security/2022/dsa-5111", + "https://www.openwall.com/lists/oss-security/2022/03/24/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/3", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-03-25T09:15:00Z", + "LastModifiedDate": "2023-04-27T17:50:00Z" + } + ] + } + ] + }, + { + "Namespace": "local-path-storage", + "Kind": "Deployment", + "Name": "local-path-provisioner", + "Results": [ + { + "Target": "Deployment/local-path-provisioner", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 129, + "Failures": 12, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 141, + "EndLine": 163, + "Code": { + "Lines": [ + { + "Number": 141, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 142, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - k8s.gcr.io/build-image/debian-base:v2.1.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 150, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 141, + "EndLine": 163, + "Code": { + "Lines": [ + { + "Number": 141, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 142, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - k8s.gcr.io/build-image/debian-base:v2.1.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 150, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 141, + "EndLine": 163, + "Code": { + "Lines": [ + { + "Number": 141, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 142, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - k8s.gcr.io/build-image/debian-base:v2.1.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 150, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 141, + "EndLine": 163, + "Code": { + "Lines": [ + { + "Number": 141, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 142, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - k8s.gcr.io/build-image/debian-base:v2.1.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 150, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 141, + "EndLine": 163, + "Code": { + "Lines": [ + { + "Number": 141, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 142, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - k8s.gcr.io/build-image/debian-base:v2.1.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 150, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV015", + "AVDID": "AVD-KSV-0015", + "Title": "CPU requests not specified", + "Description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.requests.cpu'", + "Namespace": "builtin.kubernetes.KSV015", + "Query": "data.builtin.kubernetes.KSV015.deny", + "Resolution": "Set 'containers[].resources.requests.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv015", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 141, + "EndLine": 163, + "Code": { + "Lines": [ + { + "Number": 141, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 142, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - k8s.gcr.io/build-image/debian-base:v2.1.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 150, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 141, + "EndLine": 163, + "Code": { + "Lines": [ + { + "Number": 141, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 142, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - k8s.gcr.io/build-image/debian-base:v2.1.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 150, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 141, + "EndLine": 163, + "Code": { + "Lines": [ + { + "Number": 141, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 142, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - k8s.gcr.io/build-image/debian-base:v2.1.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 150, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 141, + "EndLine": 163, + "Code": { + "Lines": [ + { + "Number": 141, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 142, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - k8s.gcr.io/build-image/debian-base:v2.1.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 150, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 141, + "EndLine": 163, + "Code": { + "Lines": [ + { + "Number": 141, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 142, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - k8s.gcr.io/build-image/debian-base:v2.1.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 150, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 141, + "EndLine": 163, + "Code": { + "Lines": [ + { + "Number": 141, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 142, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - k8s.gcr.io/build-image/debian-base:v2.1.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 150, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 141, + "EndLine": 163, + "Code": { + "Lines": [ + { + "Number": 141, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 142, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - k8s.gcr.io/build-image/debian-base:v2.1.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 150, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kubernetes-dashboard", + "Kind": "Deployment", + "Name": "dashboard-metrics-scraper", + "Results": [ + { + "Target": "metrics-sidecar", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-1996", + "PkgName": "github.com/emicklei/go-restful", + "InstalledVersion": "v2.15.0+incompatible", + "FixedVersion": "2.16.0+incompatible", + "Layer": { + "Digest": "sha256:978be80e3ee3098e11be2b18322822513d692988440ec1e74620e8539b07704d", + "DiffID": "sha256:d01384fea991c7bac1249edc4ad75507ea8f4eececc71c779a3f9d787ad8d5b0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1996", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "Authorization Bypass Through User-Controlled Key", + "Description": "Authorization Bypass Through User-Controlled Key in GitHub repository emicklei/go-restful prior to v3.8.0.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-639" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 9.1 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 9.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-1996", + "https://github.com/advisories/GHSA-r48q-9g5r-8q2h", + "https://github.com/emicklei/go-restful/commit/926662532deb450272956c7bc573978464aae74e", + "https://github.com/emicklei/go-restful/commit/f292efff46ae17e9d104f865a60a39a2ae9402f1", + "https://github.com/emicklei/go-restful/commit/fd3c327a379ce08c68ef18765bdc925f5d9bad10", + "https://github.com/emicklei/go-restful/issues/489", + "https://huntr.dev/bounties/be837427-415c-4d8c-808b-62ce20aa84f1", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/575BLJ3Y2EQBRNTFR2OSQQ6L2W6UCST3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OBDD3Q23RCGAGHIXUCWBU6N3S4RNAKXB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SO5QC2JFW2PXBWAE27OYYYL5SPFUBHTY/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W56PP46JVZEKCANBKXFKRVSBBRRMCY6V/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZGQKWD6SE75PFBPFVSZYAKAVXKBZXKWS/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1996", + "https://pkg.go.dev/vuln/GO-2022-0619", + "https://security.netapp.com/advisory/ntap-20220923-0005/", + "https://www.cve.org/CVERecord?id=CVE-2022-1996" + ], + "PublishedDate": "2022-06-08T13:15:00Z", + "LastModifiedDate": "2023-02-23T04:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220524220425-1d687d428aca", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:978be80e3ee3098e11be2b18322822513d692988440ec1e74620e8539b07704d", + "DiffID": "sha256:d01384fea991c7bac1249edc4ad75507ea8f4eececc71c779a3f9d787ad8d5b0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41721", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220524220425-1d687d428aca", + "FixedVersion": "0.1.1-0.20221104162952-702349b0e862", + "Layer": { + "Digest": "sha256:978be80e3ee3098e11be2b18322822513d692988440ec1e74620e8539b07704d", + "DiffID": "sha256:d01384fea991c7bac1249edc4ad75507ea8f4eececc71c779a3f9d787ad8d5b0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41721", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "request smuggling", + "Description": "A request smuggling attack is possible when using MaxBytesHandler. When using MaxBytesHandler, the body of an HTTP request is not fully consumed. When the server attempts to read HTTP2 frames from the connection, it will instead be reading the body of the HTTP request, which could be attacker-manipulated to represent arbitrary HTTP2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-444" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41721", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41721", + "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + "https://go.dev/cl/447396", + "https://go.dev/issue/56352", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + "https://pkg.go.dev/vuln/GO-2023-1495", + "https://www.cve.org/CVERecord?id=CVE-2022-41721" + ], + "PublishedDate": "2023-01-13T23:15:00Z", + "LastModifiedDate": "2023-01-24T17:25:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220524220425-1d687d428aca", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:978be80e3ee3098e11be2b18322822513d692988440ec1e74620e8539b07704d", + "DiffID": "sha256:d01384fea991c7bac1249edc4ad75507ea8f4eececc71c779a3f9d787ad8d5b0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220524220425-1d687d428aca", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:978be80e3ee3098e11be2b18322822513d692988440ec1e74620e8539b07704d", + "DiffID": "sha256:d01384fea991c7bac1249edc4ad75507ea8f4eececc71c779a3f9d787ad8d5b0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.7", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:978be80e3ee3098e11be2b18322822513d692988440ec1e74620e8539b07704d", + "DiffID": "sha256:d01384fea991c7bac1249edc4ad75507ea8f4eececc71c779a3f9d787ad8d5b0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + } + ] + } + ] + }, + { + "Namespace": "kubernetes-dashboard", + "Kind": "Deployment", + "Name": "dashboard-metrics-scraper", + "Results": [ + { + "Target": "Deployment/dashboard-metrics-scraper", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 132, + "Failures": 9, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 159, + "EndLine": 185, + "Code": { + "Lines": [ + { + "Number": 159, + "Content": " - image: kubernetesui/metrics-scraper:v1.0.8", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 160, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " port: 8000", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " scheme: HTTP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " initialDelaySeconds: 30", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 168, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 159, + "EndLine": 185, + "Code": { + "Lines": [ + { + "Number": 159, + "Content": " - image: kubernetesui/metrics-scraper:v1.0.8", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 160, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " port: 8000", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " scheme: HTTP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " initialDelaySeconds: 30", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 168, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 159, + "EndLine": 185, + "Code": { + "Lines": [ + { + "Number": 159, + "Content": " - image: kubernetesui/metrics-scraper:v1.0.8", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 160, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " port: 8000", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " scheme: HTTP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " initialDelaySeconds: 30", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 168, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV015", + "AVDID": "AVD-KSV-0015", + "Title": "CPU requests not specified", + "Description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'resources.requests.cpu'", + "Namespace": "builtin.kubernetes.KSV015", + "Query": "data.builtin.kubernetes.KSV015.deny", + "Resolution": "Set 'containers[].resources.requests.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv015", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 159, + "EndLine": 185, + "Code": { + "Lines": [ + { + "Number": 159, + "Content": " - image: kubernetesui/metrics-scraper:v1.0.8", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 160, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " port: 8000", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " scheme: HTTP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " initialDelaySeconds: 30", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 168, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 159, + "EndLine": 185, + "Code": { + "Lines": [ + { + "Number": 159, + "Content": " - image: kubernetesui/metrics-scraper:v1.0.8", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 160, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " port: 8000", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " scheme: HTTP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " initialDelaySeconds: 30", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 168, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 159, + "EndLine": 185, + "Code": { + "Lines": [ + { + "Number": 159, + "Content": " - image: kubernetesui/metrics-scraper:v1.0.8", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 160, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " port: 8000", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " scheme: HTTP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " initialDelaySeconds: 30", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 168, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 159, + "EndLine": 185, + "Code": { + "Lines": [ + { + "Number": 159, + "Content": " - image: kubernetesui/metrics-scraper:v1.0.8", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 160, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " port: 8000", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " scheme: HTTP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " initialDelaySeconds: 30", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 168, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'dashboard-metrics-scraper' of Deployment 'dashboard-metrics-scraper' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 159, + "EndLine": 185, + "Code": { + "Lines": [ + { + "Number": 159, + "Content": " - image: kubernetesui/metrics-scraper:v1.0.8", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 160, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " port: 8000", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " scheme: HTTP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " initialDelaySeconds: 30", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 168, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 159, + "EndLine": 185, + "Code": { + "Lines": [ + { + "Number": 159, + "Content": " - image: kubernetesui/metrics-scraper:v1.0.8", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 160, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " port: 8000", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " scheme: HTTP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " initialDelaySeconds: 30", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 168, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "Deployment", + "Name": "securecodebox-controller-manager", + "Results": [ + { + "Target": "docker.io/securecodebox/operator:4.0.1 (debian 11.7)", + "Class": "os-pkgs", + "Type": "debian" + }, + { + "Target": "manager", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-28948", + "PkgName": "gopkg.in/yaml.v3", + "InstalledVersion": "v3.0.0-20220512140231-539c8e751b99", + "FixedVersion": "3.0.0-20220521103104-8f96da9f5d5e", + "Layer": { + "Digest": "sha256:fa3eec94dc590a4ba12858082c42f0f387e52c58093d0dcb9ac86d9e4dd49654", + "DiffID": "sha256:a019b062f17eb02090df944cd3d1384b38e0b9721f5aef80642f94ed1e4528a1" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-28948", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "crash when attempting to deserialize invalid input", + "Description": "An issue in the Unmarshal function in Go-Yaml v3 causes the program to crash when attempting to deserialize invalid input.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-502" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-28948", + "https://github.com/advisories/GHSA-hp87-p4gw-j4gq", + "https://github.com/go-yaml/yaml/commit/8f96da9f5d5eff988554c1aae1784627c4bf6754", + "https://github.com/go-yaml/yaml/issues/666", + "https://nvd.nist.gov/vuln/detail/CVE-2022-28948", + "https://security.netapp.com/advisory/ntap-20220923-0006/", + "https://www.cve.org/CVERecord?id=CVE-2022-28948" + ], + "PublishedDate": "2022-05-19T20:15:00Z", + "LastModifiedDate": "2022-10-28T19:06:00Z" + } + ] + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "Deployment", + "Name": "securecodebox-controller-manager", + "Results": [ + { + "Target": "Deployment/securecodebox-controller-manager", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 137, + "Failures": 4, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'manager' of Deployment 'securecodebox-controller-manager' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 226, + "EndLine": 302, + "Code": { + "Lines": [ + { + "Number": 226, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --leader-elect", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - /manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - name: TELEMETRY_ENABLED", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " value: \"true\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - name: VERSION", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " value: 4.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 235, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'manager' of Deployment 'securecodebox-controller-manager' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 226, + "EndLine": 302, + "Code": { + "Lines": [ + { + "Number": 226, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --leader-elect", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - /manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - name: TELEMETRY_ENABLED", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " value: \"true\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - name: VERSION", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " value: 4.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 235, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 226, + "EndLine": 302, + "Code": { + "Lines": [ + { + "Number": 226, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --leader-elect", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - /manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - name: TELEMETRY_ENABLED", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " value: \"true\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - name: VERSION", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " value: 4.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 235, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 226, + "EndLine": 302, + "Code": { + "Lines": [ + { + "Number": 226, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --leader-elect", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - /manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - name: TELEMETRY_ENABLED", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " value: \"true\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - name: VERSION", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " value: 4.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 235, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Deployment", + "Name": "coredns", + "Results": [ + { + "Target": "coredns", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2020-8911", + "PkgName": "github.com/aws/aws-sdk-go", + "InstalledVersion": "v1.35.9", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-8911", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "aws/aws-sdk-go: CBC padding oracle issue in AWS S3 Crypto SDK for golang", + "Description": "A padding oracle vulnerability exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. The SDK allows users to encrypt files with AES-CBC without computing a Message Authentication Code (MAC), which then allows an attacker who has write access to the target's S3 bucket and can observe whether or not an endpoint with access to the key can decrypt a file, they can reconstruct the plaintext with (on average) 128*length (plaintext) queries to the endpoint, by exploiting CBC's ability to manipulate the bytes of the next block and PKCS5 padding errors. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N", + "V3Score": 5.6 + }, + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N", + "V2Score": 2.1, + "V3Score": 5.6 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N", + "V3Score": 5.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-8911", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869800", + "https://github.com/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8911", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8911" + ], + "PublishedDate": "2020-08-11T20:15:00Z", + "LastModifiedDate": "2020-08-18T13:37:00Z" + }, + { + "VulnerabilityID": "CVE-2020-8912", + "PkgName": "github.com/aws/aws-sdk-go", + "InstalledVersion": "v1.35.9", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-8912", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "aws-sdk-go: In-band key negotiation issue in AWS S3 Crypto SDK for golang", + "Description": "A vulnerability in the in-band key negotiation exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. An attacker with write access to the targeted bucket can change the encryption algorithm of an object in the bucket, which can then allow them to change AES-GCM to AES-CTR. Using this in combination with a decryption oracle can reveal the authentication key used by AES-GCM as decrypting the GMAC tag leaves the authentication key recoverable as an algebraic equation. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.5 + }, + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 2.1, + "V3Score": 2.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-8912", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869801", + "https://github.com/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8912", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8912" + ], + "PublishedDate": "2020-08-11T20:15:00Z", + "LastModifiedDate": "2020-08-17T19:31:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3121", + "PkgName": "github.com/gogo/protobuf", + "InstalledVersion": "v1.3.1", + "FixedVersion": "1.3.2", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3121", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "gogo/protobuf: plugin/unmarshal/unmarshal.go lacks certain index validation", + "Description": "An issue was discovered in GoGo Protobuf before 1.3.2. plugin/unmarshal/unmarshal.go lacks certain index validation, aka the \"skippy peanut butter\" issue.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-129" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 8.6 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V2Score": 7.5, + "V3Score": 8.6 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 8.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-3121", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3121", + "https://discuss.hashicorp.com/t/hcsec-2021-23-consul-exposed-to-denial-of-service-in-gogo-protobuf-dependency/29025", + "https://github.com/advisories/GHSA-c3h9-896r-86jm", + "https://github.com/gogo/protobuf/commit/b03c65ea87cdc3521ede29f62fe3ce239267c1bc", + "https://github.com/gogo/protobuf/compare/v1.3.1...v1.3.2", + "https://lists.apache.org/thread.html/r68032132c0399c29d6cdc7bd44918535da54060a10a12b1591328bff@%3Cnotifications.skywalking.apache.org%3E", + "https://lists.apache.org/thread.html/r88d69555cb74a129a7bf84838073b61259b4a3830190e05a3b87994e@%3Ccommits.pulsar.apache.org%3E", + "https://lists.apache.org/thread.html/rc1e9ff22c5641d73701ba56362fb867d40ed287cca000b131dcf4a44@%3Ccommits.pulsar.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3121", + "https://pkg.go.dev/vuln/GO-2021-0053", + "https://security.netapp.com/advisory/ntap-20210219-0006/", + "https://www.cve.org/CVERecord?id=CVE-2021-3121" + ], + "PublishedDate": "2021-01-11T06:15:00Z", + "LastModifiedDate": "2022-04-01T15:41:00Z" + }, + { + "VulnerabilityID": "CVE-2022-21698", + "PkgName": "github.com/prometheus/client_golang", + "InstalledVersion": "v1.8.0", + "FixedVersion": "1.11.1", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-21698", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "Denial of service using InstrumentHandlerCounter", + "Description": "client_golang is the instrumentation library for Go applications in Prometheus, and the promhttp package in client_golang provides tooling around HTTP servers and clients. In client_golang prior to version 1.11.1, HTTP server is susceptible to a Denial of Service through unbounded cardinality, and potential memory exhaustion, when handling requests with non-standard HTTP methods. In order to be affected, an instrumented software must use any of `promhttp.InstrumentHandler*` middleware except `RequestsInFlight`; not filter any specific methods (e.g GET) before middleware; pass metric with `method` label name to our middleware; and not have any firewall/LB/proxy that filters away requests with unknown `method`. client_golang version 1.11.1 contains a patch for this issue. Several workarounds are available, including removing the `method` label name from counter/gauge used in the InstrumentHandler; turning off affected promhttp handlers; adding custom middleware before promhttp handler that will sanitize the request method given by Go http.Request; and using a reverse proxy or web application firewall, configured to only allow a limited set of methods.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8057", + "https://access.redhat.com/security/cve/CVE-2022-21698", + "https://bugzilla.redhat.com/2044628", + "https://bugzilla.redhat.com/2045880", + "https://bugzilla.redhat.com/2050648", + "https://bugzilla.redhat.com/2050742", + "https://bugzilla.redhat.com/2050743", + "https://bugzilla.redhat.com/2065290", + "https://bugzilla.redhat.com/2107342", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107376", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2107390", + "https://bugzilla.redhat.com/2107392", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044628", + "https://bugzilla.redhat.com/show_bug.cgi?id=2045880", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050648", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050742", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050743", + "https://bugzilla.redhat.com/show_bug.cgi?id=2055349", + "https://bugzilla.redhat.com/show_bug.cgi?id=2065290", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104367", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107342", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107376", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107390", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107392", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23648", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1962", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21673", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21698", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21702", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21703", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21713", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28131", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30631", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30633", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://errata.almalinux.org/9/ALSA-2022-8057.html", + "https://errata.rockylinux.org/RLSA-2022:8057", + "https://github.com/advisories/GHSA-cg3q-j54f-5p7p", + "https://github.com/prometheus/client_golang/pull/962", + "https://github.com/prometheus/client_golang/pull/987", + "https://github.com/prometheus/client_golang/releases/tag/v1.11.1", + "https://github.com/prometheus/client_golang/security/advisories/GHSA-cg3q-j54f-5p7p", + "https://linux.oracle.com/cve/CVE-2022-21698.html", + "https://linux.oracle.com/errata/ELSA-2022-8057.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2IK53GWZ475OQ6ENABKMJMTOBZG6LXUR/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2PFW6Q2LXXWTFRTMTRN4ZGADFRQPKJ3D/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36GUEPA5TPSC57DZTPYPBL6T7UPQ2FRH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3L6GDN5S5QZSCFKWD3GKL2RDZQ6B4UWA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4KDETHL5XCT6RZN2BBNOCEXRZ2W3SFU3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5OGNAFVXSMTTT2UPH6CS3IH6L3KM42Q7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7V7I72LSQ3IET3QJR6QPAVGJZ4CBDLN5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AK7CJBCGERCRXYUR2EWDSSDVAQMTAZGX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FY3N7H6VSDZM37B4SKM2PFFCUWU7QYWN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HLAQRRGNSO5MYCPAXGPH2OCSHOGHSQMQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KBMVIQFKQDSSTHVVJWJ4QH6TW3JVB7XZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MH6ALXEQXIFQRQFNJ5Y2MJ5DFPIX76VN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RN7JGC2LVHPEGSJYODFUV5FEKPBVG4D7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SASRKYHT5ZFSVMJUQUG3UAEQRJYGJKAR/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZKORFJTRRDJCWBTJPISKKCVMMMJBIRLG/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-21698", + "https://pkg.go.dev/vuln/GO-2022-0322", + "https://www.cve.org/CVERecord?id=CVE-2022-21698" + ], + "PublishedDate": "2022-02-15T16:15:00Z", + "LastModifiedDate": "2022-12-09T16:46:00Z" + }, + { + "VulnerabilityID": "CVE-2018-1099", + "PkgName": "go.etcd.io/etcd", + "InstalledVersion": "v0.5.0-alpha.5.0.20200306183522-221f0cc107cb", + "FixedVersion": "3.4.0", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1099", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "etcd: DNS rebinding vulnerability in etcd server", + "Description": "DNS rebinding vulnerability found in etcd 3.3.1 and earlier. An attacker can control his DNS records to direct to localhost, and trick the browser into sending requests to localhost (or any other address).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.5 + }, + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:L", + "V3Score": 5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-1099", + "https://bugzilla.redhat.com/show_bug.cgi?id=1552717", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1099", + "https://github.com/advisories/GHSA-wf43-55jj-vwq8", + "https://github.com/coreos/etcd/commit/a7e5790c82039945639798ae9a3289fe787f5e56", + "https://github.com/coreos/etcd/issues/9353", + "https://github.com/etcd-io/etcd/issues/10479", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JX7QTIT465BQGRGNCE74RATRQLKT2QE4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UPGYHMSKDPW5GAMI7BEP3XQRVRLLBJKS/", + "https://nvd.nist.gov/vuln/detail/CVE-2018-1099", + "https://www.cve.org/CVERecord?id=CVE-2018-1099" + ], + "PublishedDate": "2018-04-03T16:29:00Z", + "LastModifiedDate": "2019-05-06T06:29:00Z" + }, + { + "VulnerabilityID": "CVE-2020-15112", + "PkgName": "go.etcd.io/etcd", + "InstalledVersion": "v0.5.0-alpha.5.0.20200306183522-221f0cc107cb", + "FixedVersion": "0.5.0-alpha.5.0.20200423152442-f4b650b51dc4", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-15112", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "etcd: DoS in wal/wal.go", + "Description": "In etcd before versions 3.3.23 and 3.4.10, it is possible to have an entry index greater then the number of entries in the ReadAll method in wal/wal.go. This could cause issues when WAL entries are being read during consensus as an arbitrary etcd consensus participant could go down from a runtime panic when reading the entry.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-129" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4, + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-15112", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15112", + "https://github.com/advisories/GHSA-m332-53r6-2w93", + "https://github.com/etcd-io/etcd/blob/master/security/SECURITY_AUDIT.pdf", + "https://github.com/etcd-io/etcd/commit/7d1cf640497cbcdfb932e619b13624112c7e3865", + "https://github.com/etcd-io/etcd/commit/f4b650b51dc4a53a8700700dc12e1242ac56ba07", + "https://github.com/etcd-io/etcd/pull/11793", + "https://github.com/etcd-io/etcd/security/advisories/GHSA-m332-53r6-2w93", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/L6B6R43Y7M3DCHWK3L3UVGE2K6WWECMP/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-15112", + "https://pkg.go.dev/vuln/GO-2020-0005", + "https://ubuntu.com/security/notices/USN-5628-1", + "https://ubuntu.com/security/notices/USN-5628-2", + "https://www.cve.org/CVERecord?id=CVE-2020-15112" + ], + "PublishedDate": "2020-08-05T20:15:00Z", + "LastModifiedDate": "2021-11-18T18:30:00Z" + }, + { + "VulnerabilityID": "CVE-2020-15106", + "PkgName": "go.etcd.io/etcd", + "InstalledVersion": "v0.5.0-alpha.5.0.20200306183522-221f0cc107cb", + "FixedVersion": "0.5.0-alpha.5.0.20200423152442-f4b650b51dc4", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-15106", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "etcd: Large slice causes panic in decodeRecord method", + "Description": "In etcd before versions 3.3.23 and 3.4.10, a large slice causes panic in decodeRecord method. The size of a record is stored in the length field of a WAL file and no additional validation is done on this data. Therefore, it is possible to forge an extremely large frame size that can unintentionally panic at the expense of any RAFT participant trying to decode the WAL.", + "Severity": "LOW", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4, + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-15106", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15106", + "https://github.com/advisories/GHSA-p4g4-wgrh-qrg2", + "https://github.com/etcd-io/etcd/blob/master/security/SECURITY_AUDIT.pdf", + "https://github.com/etcd-io/etcd/commit/4571e528f49625d3de3170f219a45c3b3d38c675", + "https://github.com/etcd-io/etcd/commit/f4b650b51dc4a53a8700700dc12e1242ac56ba07", + "https://github.com/etcd-io/etcd/pull/11793", + "https://github.com/etcd-io/etcd/security/advisories/GHSA-p4g4-wgrh-qrg2", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/L6B6R43Y7M3DCHWK3L3UVGE2K6WWECMP/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-15106", + "https://pkg.go.dev/vuln/GO-2020-0005", + "https://ubuntu.com/security/notices/USN-5628-1", + "https://ubuntu.com/security/notices/USN-5628-2", + "https://www.cve.org/CVERecord?id=CVE-2020-15106" + ], + "PublishedDate": "2020-08-05T19:15:00Z", + "LastModifiedDate": "2021-11-18T18:30:00Z" + }, + { + "VulnerabilityID": "CVE-2020-29652", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20201002170205-7f63de1d35b0", + "FixedVersion": "0.0.0-20201216223049-8b5274cf687f", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-29652", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: crypto/ssh: crafted authentication request can lead to nil pointer dereference", + "Description": "A nil pointer dereference in the golang.org/x/crypto/ssh component through v0.0.0-20201203163018-be400aefbc4c for Go allows remote attackers to cause a denial of service against SSH servers.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-29652", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-29652", + "https://errata.almalinux.org/8/ALSA-2021-1796.html", + "https://github.com/advisories/GHSA-3vm4-22fp-5rfm", + "https://go-review.googlesource.com/c/crypto/+/278852", + "https://go.dev/cl/278852", + "https://go.googlesource.com/crypto/+/8b5274cf687fd9316b4108863654cc57385531e8", + "https://groups.google.com/g/golang-announce/c/ouZIlBimOsE?pli=1", + "https://linux.oracle.com/cve/CVE-2020-29652.html", + "https://linux.oracle.com/errata/ELSA-2021-1796.html", + "https://lists.apache.org/thread.html/r68032132c0399c29d6cdc7bd44918535da54060a10a12b1591328bff@%3Cnotifications.skywalking.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2020-29652", + "https://pkg.go.dev/vuln/GO-2021-0227", + "https://www.cve.org/CVERecord?id=CVE-2020-29652" + ], + "PublishedDate": "2020-12-17T05:15:00Z", + "LastModifiedDate": "2022-10-04T14:52:00Z" + }, + { + "VulnerabilityID": "CVE-2021-43565", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20201002170205-7f63de1d35b0", + "FixedVersion": "0.0.0-20211202192323-5770296d904e", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-43565", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang.org/x/crypto: empty plaintext packet causes panic", + "Description": "The x/crypto/ssh package before 0.0.0-20211202192323-5770296d904e of golang.org/x/crypto allows an attacker to panic an SSH server.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-43565", + "https://github.com/advisories/GHSA-gwc9-m7rh-j2ww", + "https://go.dev/cl/368814/", + "https://go.dev/issues/49932", + "https://groups.google.com/forum/#!forum/golang-announce", + "https://groups.google.com/g/golang-announce/c/2AR1sKiM-Qs", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43565", + "https://pkg.go.dev/vuln/GO-2022-0968", + "https://www.cve.org/CVERecord?id=CVE-2021-43565" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-09-09T03:38:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27191", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20201002170205-7f63de1d35b0", + "FixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27191", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "crash in a golang.org/x/crypto/ssh server", + "Description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191" + ], + "PublishedDate": "2022-03-18T07:15:00Z", + "LastModifiedDate": "2022-10-26T17:52:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33194", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20200707034311-ab3426394381", + "FixedVersion": "0.0.0-20210520170846-37e1c6afe023", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33194", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: x/net/html: infinite loop in ParseFragment", + "Description": "golang.org/x/net before v0.0.0-20210520170846-37e1c6afe023 allows attackers to cause a denial of service (infinite loop) via crafted ParseFragment input.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-835" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-33194", + "https://github.com/advisories/GHSA-83g2-8m93-v3w7", + "https://github.com/golang/net/commit/37e1c6afe02340126705deced573a85ab75209d7", + "https://go.dev/cl/311090", + "https://go.dev/issue/46288", + "https://go.googlesource.com/net/+/37e1c6afe02340126705deced573a85ab75209d7", + "https://groups.google.com/g/golang-announce/c/wPunbCPkWUg", + "https://groups.google.com/g/golang-dev/c/28x0nthP-c8/m/KqWVTjsnBAAJ", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4CHKSFMHZVOBCZSSVRE3UEYNKARTBMTM/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33194", + "https://pkg.go.dev/vuln/GO-2021-0238", + "https://www.cve.org/CVERecord?id=CVE-2021-33194" + ], + "PublishedDate": "2021-05-26T15:15:00Z", + "LastModifiedDate": "2022-06-03T19:29:00Z" + }, + { + "VulnerabilityID": "CVE-2021-44716", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20200707034311-ab3426394381", + "FixedVersion": "0.0.0-20211209124913-491a49abca63", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-44716", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: net/http: limit growth of header canonicalization cache", + "Description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716" + ], + "PublishedDate": "2022-01-01T05:15:00Z", + "LastModifiedDate": "2023-04-20T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20200707034311-ab3426394381", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20200707034311-ab3426394381", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2021-31525", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20200707034311-ab3426394381", + "FixedVersion": "0.0.0-20210428140749-89ef3d95e781", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-31525", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: net/http: panic in ReadRequest and ReadResponse when reading a very large header", + "Description": "net/http in Go before 1.15.12 and 1.16.x before 1.16.4 allows remote attackers to cause a denial of service (panic) via a large header to ReadRequest or ReadResponse. Server, Transport, and Client can each be affected in some configurations.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "nvd": { + "V2Vector": "AV:N/AC:H/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.6, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-31525", + "https://github.com/advisories/GHSA-h86h-8ppg-mxmh", + "https://github.com/golang/go/issues/45710", + "https://go.dev/cl/313069", + "https://go.dev/issue/45710", + "https://go.googlesource.com/net/+/89ef3d95e781148a0951956029c92a211477f7f9", + "https://groups.google.com/g/golang-announce/c/cu9SP4eSXMc", + "https://linux.oracle.com/cve/CVE-2021-31525.html", + "https://linux.oracle.com/errata/ELSA-2021-3076.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ISRZZ6NY5R2TBYE72KZFOCO25TEUQTBF/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-31525", + "https://pkg.go.dev/vuln/GO-2022-0236", + "https://security.gentoo.org/glsa/202208-02", + "https://www.cve.org/CVERecord?id=CVE-2021-31525" + ], + "PublishedDate": "2021-05-27T13:15:00Z", + "LastModifiedDate": "2022-11-09T03:32:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20200707034311-ab3426394381", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29526", + "PkgName": "golang.org/x/sys", + "InstalledVersion": "v0.0.0-20201015000850-e3ed0017c211", + "FixedVersion": "0.0.0-20220412211240-33da011f77ad", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29526", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "faccessat checks wrong group", + "Description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526" + ], + "PublishedDate": "2022-06-23T17:15:00Z", + "LastModifiedDate": "2022-08-19T12:50:00Z" + }, + { + "VulnerabilityID": "CVE-2021-38561", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.3", + "FixedVersion": "0.3.7", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-38561", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "Description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561" + ], + "PublishedDate": "2022-12-26T06:15:00Z", + "LastModifiedDate": "2023-01-05T04:52:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.3", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + }, + { + "VulnerabilityID": "CVE-2020-8565", + "PkgName": "k8s.io/client-go", + "InstalledVersion": "v0.19.2", + "FixedVersion": "0.20.0-alpha.2", + "Layer": { + "Digest": "sha256:5984b6d55edf1b88d59e46252fee6d46c4adb56b37b8f5b3acbe5d7fe2555396", + "DiffID": "sha256:69ae2fbf419fecdd8e89db00b7988aae1e32e74fbdd4b6d6206a97532d4156e0" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-8565", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "kubernetes: Incomplete fix for CVE-2019-11250 allows for token leak in logs when logLevel \u003e= 9", + "Description": "In Kubernetes, if the logging level is set to at least 9, authorization and bearer tokens will be written to log files. This can occur both in API server logs and client tool output like kubectl. This affects \u003c= v1.19.3, \u003c= v1.18.10, \u003c= v1.17.13, \u003c v1.20.0-alpha2.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-532" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 4.7 + }, + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-8565", + "https://github.com/advisories/GHSA-8cfg-vx93-jvxw", + "https://github.com/kubernetes/kubernetes/commit/e99df0e5a75eb6e86123b56d53e9b7ca0fd00419", + "https://github.com/kubernetes/kubernetes/issues/95623", + "https://github.com/kubernetes/kubernetes/pull/95316", + "https://groups.google.com/g/kubernetes-announce/c/ScdmyORnPDk", + "https://groups.google.com/g/kubernetes-security-discuss/c/vm-HcrFUOCs/m/36utxAM5CwAJ", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8565", + "https://pkg.go.dev/vuln/GO-2021-0064", + "https://www.cve.org/CVERecord?id=CVE-2020-8565" + ], + "PublishedDate": "2020-12-07T22:15:00Z", + "LastModifiedDate": "2020-12-08T19:51:00Z" + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Deployment", + "Name": "coredns", + "Results": [ + { + "Target": "Deployment/coredns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 134, + "Failures": 7, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'coredns' of Deployment 'coredns' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 190, + "EndLine": 244, + "Code": { + "Lines": [ + { + "Number": 190, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 191, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 199, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'coredns' of Deployment 'coredns' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 190, + "EndLine": 244, + "Code": { + "Lines": [ + { + "Number": 190, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 191, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 199, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'coredns' of Deployment 'coredns' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 190, + "EndLine": 244, + "Code": { + "Lines": [ + { + "Number": 190, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 191, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 199, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'coredns' of Deployment 'coredns' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 190, + "EndLine": 244, + "Code": { + "Lines": [ + { + "Number": 190, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 191, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 199, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV022", + "AVDID": "AVD-KSV-0022", + "Title": "Non-default capabilities added", + "Description": "Adding NET_RAW or capabilities beyond the default set must be disallowed.", + "Message": "Container 'coredns' of Deployment 'coredns' should not set 'securityContext.capabilities.add'", + "Namespace": "builtin.kubernetes.KSV022", + "Query": "data.builtin.kubernetes.KSV022.deny", + "Resolution": "Do not set spec.containers[*].securityContext.capabilities.add and spec.initContainers[*].securityContext.capabilities.add", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv022", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv022" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 190, + "EndLine": 244, + "Code": { + "Lines": [ + { + "Number": 190, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 191, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 199, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 190, + "EndLine": 244, + "Code": { + "Lines": [ + { + "Number": 190, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 191, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 199, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 190, + "EndLine": 244, + "Code": { + "Lines": [ + { + "Number": 190, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 191, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 199, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "kube-apiserver-kind-control-plane", + "Results": [ + { + "Target": "k8s.gcr.io/kube-apiserver:v1.21.1 (debian 10.9)", + "Class": "os-pkgs", + "Type": "debian", + "Vulnerabilities": [ + { + "VulnerabilityID": "DLA-3134-1", + "VendorIDs": [ + "DLA-3134-1" + ], + "PkgID": "tzdata@2021a-0+deb10u1", + "PkgName": "tzdata", + "InstalledVersion": "2021a-0+deb10u1", + "FixedVersion": "2021a-0+deb10u7", + "Layer": { + "Digest": "sha256:5dea5ec2316d4a067b946b15c3c4f140b4f2ad607e73e9bc41b673ee5ebb99a3", + "DiffID": "sha256:417cb9b79adeec55f58b890dc9831e252e3523d8de5fd28b4ee2abb151b7dc8b" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-3161-1", + "VendorIDs": [ + "DLA-3161-1" + ], + "PkgID": "tzdata@2021a-0+deb10u1", + "PkgName": "tzdata", + "InstalledVersion": "2021a-0+deb10u1", + "FixedVersion": "2021a-0+deb10u8", + "Layer": { + "Digest": "sha256:5dea5ec2316d4a067b946b15c3c4f140b4f2ad607e73e9bc41b673ee5ebb99a3", + "DiffID": "sha256:417cb9b79adeec55f58b890dc9831e252e3523d8de5fd28b4ee2abb151b7dc8b" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-3366-1", + "VendorIDs": [ + "DLA-3366-1" + ], + "PkgID": "tzdata@2021a-0+deb10u1", + "PkgName": "tzdata", + "InstalledVersion": "2021a-0+deb10u1", + "FixedVersion": "2021a-0+deb10u10", + "Layer": { + "Digest": "sha256:5dea5ec2316d4a067b946b15c3c4f140b4f2ad607e73e9bc41b673ee5ebb99a3", + "DiffID": "sha256:417cb9b79adeec55f58b890dc9831e252e3523d8de5fd28b4ee2abb151b7dc8b" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-3412-1", + "VendorIDs": [ + "DLA-3412-1" + ], + "PkgID": "tzdata@2021a-0+deb10u1", + "PkgName": "tzdata", + "InstalledVersion": "2021a-0+deb10u1", + "FixedVersion": "2021a-0+deb10u11", + "Layer": { + "Digest": "sha256:5dea5ec2316d4a067b946b15c3c4f140b4f2ad607e73e9bc41b673ee5ebb99a3", + "DiffID": "sha256:417cb9b79adeec55f58b890dc9831e252e3523d8de5fd28b4ee2abb151b7dc8b" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "kube-apiserver-kind-control-plane", + "Results": [ + { + "Target": "Pod/kube-apiserver-kind-control-plane", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 118, + "Failures": 23, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KCV0001", + "AVDID": "AVD-KCV-0001", + "Title": "Ensure that the --anonymous-auth argument is set to false", + "Description": "Disable anonymous requests to the API server.", + "Message": "Ensure that the --anonymous-auth argument is set to false", + "Namespace": "builtin.kubernetes.KCV0001", + "Query": "data.builtin.kubernetes.KCV0001.deny", + "Resolution": "Set '--anonymous-auth' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0001", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0006", + "AVDID": "AVD-KCV-0006", + "Title": "Ensure that the --kubelet-certificate-authority argument is set as appropriate", + "Description": "Verify kubelet's certificate before establishing connection.", + "Message": "Ensure that the --kubelet-certificate-authority argument is set as appropriate", + "Namespace": "builtin.kubernetes.KCV0006", + "Query": "data.builtin.kubernetes.KCV0006.deny", + "Resolution": "Follow the Kubernetes documentation and setup the TLS connection between the apiserver and kubelets. ", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0006", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0006" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0010", + "AVDID": "AVD-KCV-0010", + "Title": "Ensure that the admission control plugin EventRateLimit is set", + "Description": "Limit the rate at which the API server accepts requests.", + "Message": "Ensure that the admission control plugin EventRateLimit is set", + "Namespace": "builtin.kubernetes.KCV0010", + "Query": "data.builtin.kubernetes.KCV0010.deny", + "Resolution": "Follow the Kubernetes documentation and set the desired limits in a configuration file. Then, edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml and set the below parameters.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0010", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0010" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV0012", + "AVDID": "AVD-KCV-0012", + "Title": "Ensure that the admission control plugin AlwaysPullImages is set", + "Description": "Always pull images.", + "Message": "Ensure that the admission control plugin AlwaysPullImages is set", + "Namespace": "builtin.kubernetes.KCV0012", + "Query": "data.builtin.kubernetes.KCV0012.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --enable-admission-plugins parameter to include AlwaysPullImages.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv0012", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/ksv0012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0013", + "AVDID": "AVD-KCV-0013", + "Title": "Ensure that the admission control plugin SecurityContextDeny is set if PodSecurityPolicy is not used", + "Description": "The SecurityContextDeny admission controller can be used to deny pods which make use of some SecurityContext fields which could allow for privilege escalation in the cluster. This should be used where PodSecurityPolicy is not in place within the cluster.", + "Message": "Ensure that the admission control plugin SecurityContextDeny is set if PodSecurityPolicy is not used", + "Namespace": "builtin.kubernetes.KCV0013", + "Query": "data.builtin.kubernetes.KCV0013.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --enable-admission-plugins parameter to include SecurityContextDeny, unless PodSecurityPolicy is already in place.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0013", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0013" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0018", + "AVDID": "AVD-KCV-0018", + "Title": "Ensure that the --profiling argument is set to false", + "Description": "Disable profiling, if not needed.", + "Message": "Ensure that the --profiling argument is set to false", + "Namespace": "builtin.kubernetes.KCV0018", + "Query": "data.builtin.kubernetes.KCV0018.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the below parameter.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0018", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0019", + "AVDID": "AVD-KCV-0019", + "Title": "Ensure that the --audit-log-path argument is set", + "Description": "Enable auditing on the Kubernetes API Server and set the desired audit log path.", + "Message": "Ensure that the --audit-log-path argument is set", + "Namespace": "builtin.kubernetes.KCV0019", + "Query": "data.builtin.kubernetes.KCV0019.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-path parameter.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0019", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0019" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0020", + "AVDID": "AVD-KCV-0020", + "Title": "Ensure that the --audit-log-maxage argument is set to 30 or as appropriate", + "Description": "Retain the logs for at least 30 days or as appropriate.", + "Message": "Ensure that the --audit-log-maxage argument is set to 30 or as appropriate", + "Namespace": "builtin.kubernetes.KCV0020", + "Query": "data.builtin.kubernetes.KCV0020.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-maxage parameter to 30 or as an appropriate number of days.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0020", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0021", + "AVDID": "AVD-KCV-0021", + "Title": "Ensure that the --audit-log-maxbackup argument is set to 10 or as appropriate", + "Description": "Retain 10 or an appropriate number of old log files.", + "Message": "Ensure that the --audit-log-maxbackup argument is set to 10 or as appropriate", + "Namespace": "builtin.kubernetes.KCV0021", + "Query": "data.builtin.kubernetes.KCV0021.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-maxbackup parameter to 10 or to an appropriate value.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0021", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0022", + "AVDID": "AVD-KCV-0022", + "Title": "Ensure that the --audit-log-maxsize argument is set to 100 or as appropriate", + "Description": "Rotate log files on reaching 100 MB or as appropriate.", + "Message": "Ensure that the --audit-log-maxsize argument is set to 100 or as appropriate", + "Namespace": "builtin.kubernetes.KCV0022", + "Query": "data.builtin.kubernetes.KCV0022.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-maxsize parameter to an appropriate size in MB", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0022", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0022" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV009", + "AVDID": "AVD-KSV-0009", + "Title": "Access to host network", + "Description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "Message": "Pod 'kube-apiserver-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true", + "Namespace": "builtin.kubernetes.KSV009", + "Query": "data.builtin.kubernetes.KSV009.deny", + "Resolution": "Do not set 'spec.template.spec.hostNetwork' to true.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv009", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 217, + "EndLine": 339, + "Code": { + "Lines": [ + { + "Number": 217, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 226, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV023", + "AVDID": "AVD-KSV-0023", + "Title": "hostPath volumes mounted", + "Description": "HostPath volumes must be forbidden.", + "Message": "Pod 'kube-apiserver-kind-control-plane' should not set 'spec.template.volumes.hostPath'", + "Namespace": "builtin.kubernetes.KSV023", + "Query": "data.builtin.kubernetes.KSV023.deny", + "Resolution": "Do not set 'spec.volumes[*].hostPath'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv023", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 217, + "EndLine": 339, + "Code": { + "Lines": [ + { + "Number": 217, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 226, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 218, + "EndLine": 304, + "Code": { + "Lines": [ + { + "Number": 218, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 219, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 220, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 221, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 227, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kubernetes-dashboard", + "Kind": "Deployment", + "Name": "kubernetes-dashboard", + "Results": [ + { + "Target": "dashboard", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2023-2253", + "PkgName": "github.com/docker/distribution", + "InstalledVersion": "v2.8.1+incompatible", + "FixedVersion": "2.8.2-beta.1", + "Layer": { + "Digest": "sha256:ee3247c7e545df975ba3826979c7a8d73f1373cbb3ac47def3b734631cef2965", + "DiffID": "sha256:bd8a70623766df659fac15bf8b5b42dd01bcbb9acf77c1287bec77dde4d13d07" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2253", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "DoS from malicious API request", + "Description": "A flaw was found in the `/v2/_catalog` endpoint in distribution/distribution, which accepts a parameter to control the maximum number of records returned (query string: `n`). This vulnerability allows a malicious user to submit an unreasonably large value for `n,` causing the allocation of a massive string array, possibly causing a denial of service through excessive use of memory.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-2253", + "https://bugzilla.redhat.com/show_bug.cgi?id=2189886", + "https://github.com/advisories/GHSA-hqxw-f8mx-cpmw", + "https://github.com/distribution/distribution/commit/f55a6552b006a381d9167e328808565dd2bf77dc", + "https://github.com/distribution/distribution/security/advisories/GHSA-hqxw-f8mx-cpmw", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2253", + "https://www.cve.org/CVERecord?id=CVE-2023-2253" + ], + "PublishedDate": "2023-06-06T20:15:00Z", + "LastModifiedDate": "2023-06-13T19:09:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:ee3247c7e545df975ba3826979c7a8d73f1373cbb3ac47def3b734631cef2965", + "DiffID": "sha256:bd8a70623766df659fac15bf8b5b42dd01bcbb9acf77c1287bec77dde4d13d07" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41721", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.1.1-0.20221104162952-702349b0e862", + "Layer": { + "Digest": "sha256:ee3247c7e545df975ba3826979c7a8d73f1373cbb3ac47def3b734631cef2965", + "DiffID": "sha256:bd8a70623766df659fac15bf8b5b42dd01bcbb9acf77c1287bec77dde4d13d07" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41721", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "request smuggling", + "Description": "A request smuggling attack is possible when using MaxBytesHandler. When using MaxBytesHandler, the body of an HTTP request is not fully consumed. When the server attempts to read HTTP2 frames from the connection, it will instead be reading the body of the HTTP request, which could be attacker-manipulated to represent arbitrary HTTP2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-444" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41721", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41721", + "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + "https://go.dev/cl/447396", + "https://go.dev/issue/56352", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + "https://pkg.go.dev/vuln/GO-2023-1495", + "https://www.cve.org/CVERecord?id=CVE-2022-41721" + ], + "PublishedDate": "2023-01-13T23:15:00Z", + "LastModifiedDate": "2023-01-24T17:25:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:ee3247c7e545df975ba3826979c7a8d73f1373cbb3ac47def3b734631cef2965", + "DiffID": "sha256:bd8a70623766df659fac15bf8b5b42dd01bcbb9acf77c1287bec77dde4d13d07" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:ee3247c7e545df975ba3826979c7a8d73f1373cbb3ac47def3b734631cef2965", + "DiffID": "sha256:bd8a70623766df659fac15bf8b5b42dd01bcbb9acf77c1287bec77dde4d13d07" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.7", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:ee3247c7e545df975ba3826979c7a8d73f1373cbb3ac47def3b734631cef2965", + "DiffID": "sha256:bd8a70623766df659fac15bf8b5b42dd01bcbb9acf77c1287bec77dde4d13d07" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + } + ] + }, + { + "Target": "Dockerfile", + "Class": "config", + "Type": "dockerfile", + "MisconfSummary": { + "Successes": 24, + "Failures": 2, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Dockerfile Security Check", + "ID": "DS005", + "AVDID": "AVD-DS-0005", + "Title": "ADD instead of COPY", + "Description": "You should use COPY instead of ADD unless you want to extract a tar file. Note that an ADD command will extract a tar file, which adds the risk of Zip-based vulnerabilities. Accordingly, it is advised to use a COPY command, which does not extract tar files.", + "Message": "Consider using 'COPY . /' command instead of 'ADD . /'", + "Namespace": "builtin.dockerfile.DS005", + "Query": "data.builtin.dockerfile.DS005.deny", + "Resolution": "Use COPY instead of ADD", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ds005", + "References": [ + "https://docs.docker.com/engine/reference/builder/#add", + "https://avd.aquasec.com/misconfig/ds005" + ], + "Status": "FAIL", + "Layer": { + "Digest": "sha256:ee3247c7e545df975ba3826979c7a8d73f1373cbb3ac47def3b734631cef2965", + "DiffID": "sha256:bd8a70623766df659fac15bf8b5b42dd01bcbb9acf77c1287bec77dde4d13d07" + }, + "CauseMetadata": { + "Provider": "Dockerfile", + "Service": "general", + "StartLine": 31, + "EndLine": 31, + "Code": { + "Lines": [ + { + "Number": 31, + "Content": "ADD . /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Dockerfile Security Check", + "ID": "DS026", + "AVDID": "AVD-DS-0026", + "Title": "No HEALTHCHECK defined", + "Description": "You should add HEALTHCHECK instruction in your docker container images to perform the health check on running containers.", + "Message": "Add HEALTHCHECK instruction in your Dockerfile", + "Namespace": "builtin.dockerfile.DS026", + "Query": "data.builtin.dockerfile.DS026.deny", + "Resolution": "Add HEALTHCHECK instruction in Dockerfile", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ds026", + "References": [ + "https://blog.aquasec.com/docker-security-best-practices", + "https://avd.aquasec.com/misconfig/ds026" + ], + "Status": "FAIL", + "Layer": { + "Digest": "sha256:ee3247c7e545df975ba3826979c7a8d73f1373cbb3ac47def3b734631cef2965", + "DiffID": "sha256:bd8a70623766df659fac15bf8b5b42dd01bcbb9acf77c1287bec77dde4d13d07" + }, + "CauseMetadata": { + "Provider": "Dockerfile", + "Service": "general", + "Code": { + "Lines": null + } + } + } + ] + } + ] + }, + { + "Namespace": "kubernetes-dashboard", + "Kind": "Deployment", + "Name": "kubernetes-dashboard", + "Results": [ + { + "Target": "Deployment/kubernetes-dashboard", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 132, + "Failures": 9, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 171, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 171, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --auto-generate-certificates", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --namespace=kubernetes-dashboard", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " image: kubernetesui/dashboard:v2.7.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " imagePullPolicy: Always", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 180, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 171, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 171, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --auto-generate-certificates", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --namespace=kubernetes-dashboard", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " image: kubernetesui/dashboard:v2.7.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " imagePullPolicy: Always", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 180, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 171, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 171, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --auto-generate-certificates", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --namespace=kubernetes-dashboard", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " image: kubernetesui/dashboard:v2.7.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " imagePullPolicy: Always", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 180, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV015", + "AVDID": "AVD-KSV-0015", + "Title": "CPU requests not specified", + "Description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'resources.requests.cpu'", + "Namespace": "builtin.kubernetes.KSV015", + "Query": "data.builtin.kubernetes.KSV015.deny", + "Resolution": "Set 'containers[].resources.requests.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv015", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 171, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 171, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --auto-generate-certificates", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --namespace=kubernetes-dashboard", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " image: kubernetesui/dashboard:v2.7.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " imagePullPolicy: Always", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 180, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 171, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 171, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --auto-generate-certificates", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --namespace=kubernetes-dashboard", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " image: kubernetesui/dashboard:v2.7.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " imagePullPolicy: Always", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 180, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 171, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 171, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --auto-generate-certificates", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --namespace=kubernetes-dashboard", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " image: kubernetesui/dashboard:v2.7.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " imagePullPolicy: Always", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 180, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 171, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 171, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --auto-generate-certificates", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --namespace=kubernetes-dashboard", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " image: kubernetesui/dashboard:v2.7.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " imagePullPolicy: Always", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 180, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kubernetes-dashboard' of Deployment 'kubernetes-dashboard' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 171, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 171, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --auto-generate-certificates", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --namespace=kubernetes-dashboard", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " image: kubernetesui/dashboard:v2.7.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " imagePullPolicy: Always", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 180, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 171, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 171, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --auto-generate-certificates", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --namespace=kubernetes-dashboard", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " image: kubernetesui/dashboard:v2.7.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " imagePullPolicy: Always", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " failureThreshold: 3", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " path: /", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 180, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "Deployment", + "Name": "securecodebox-operator-minio", + "Results": [ + { + "Target": "docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)", + "Class": "os-pkgs", + "Type": "debian", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2011-3374", + "PkgID": "apt@2.2.4", + "PkgName": "apt", + "InstalledVersion": "2.2.4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "PublishedDate": "2019-11-26T00:15:00Z", + "LastModifiedDate": "2021-02-09T16:08:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3715", + "PkgID": "bash@5.1-2+deb11u1", + "PkgName": "bash", + "InstalledVersion": "5.1-2+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3715", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "a heap-buffer-overflow in valid_parameter_transform", + "Description": "A flaw was found in the bash package, where a heap-buffer overflow can occur in valid parameter_transform. This issue may lead to memory problems.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0340", + "https://access.redhat.com/security/cve/CVE-2022-3715", + "https://bugzilla.redhat.com/2126720", + "https://bugzilla.redhat.com/show_bug.cgi?id=2126720", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3715", + "https://errata.almalinux.org/9/ALSA-2023-0340.html", + "https://errata.rockylinux.org/RLSA-2023:0340", + "https://linux.oracle.com/cve/CVE-2022-3715.html", + "https://linux.oracle.com/errata/ELSA-2023-0340.html", + "https://lists.gnu.org/archive/html/bug-bash/2022-08/msg00147.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3715", + "https://www.cve.org/CVERecord?id=CVE-2022-3715" + ], + "PublishedDate": "2023-01-05T15:15:00Z", + "LastModifiedDate": "2023-02-24T18:38:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "bsdutils@1:2.36.1-8+deb11u1", + "PkgName": "bsdutils", + "InstalledVersion": "1:2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2016-2781", + "PkgID": "coreutils@8.32-4+b1", + "PkgName": "coreutils", + "InstalledVersion": "8.32-4+b1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-2781", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "coreutils: Non-privileged session can escape to the parent session in chroot", + "Description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "Severity": "LOW", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:N", + "V2Score": 2.1, + "V3Score": 6.5 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H", + "V2Score": 6.2, + "V3Score": 8.6 + } + }, + "References": [ + "http://seclists.org/oss-sec/2016/q1/452", + "http://www.openwall.com/lists/oss-security/2016/02/28/2", + "http://www.openwall.com/lists/oss-security/2016/02/28/3", + "https://access.redhat.com/security/cve/CVE-2016-2781", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lore.kernel.org/patchwork/patch/793178/", + "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + "https://www.cve.org/CVERecord?id=CVE-2016-2781" + ], + "PublishedDate": "2017-02-07T15:59:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-18018", + "PkgID": "coreutils@8.32-4+b1", + "PkgName": "coreutils", + "InstalledVersion": "8.32-4+b1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-18018", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "coreutils: race condition vulnerability in chown and chgrp", + "Description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX \"-R -L\" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "Severity": "LOW", + "CweIDs": [ + "CWE-362" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 1.9, + "V3Score": 4.7 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:R/S:U/C:L/I:L/A:L", + "V3Score": 4.2 + } + }, + "References": [ + "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + "https://access.redhat.com/security/cve/CVE-2017-18018", + "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + "https://www.cve.org/CVERecord?id=CVE-2017-18018" + ], + "PublishedDate": "2018-01-04T04:29:00Z", + "LastModifiedDate": "2018-01-19T15:46:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32221", + "VendorIDs": [ + "DSA-5330-1" + ], + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32221", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "POST following PUT confusion", + "Description": "When doing HTTP(S) transfers, libcurl might erroneously use the read callback (`CURLOPT_READFUNCTION`) to ask for data to send, even when the `CURLOPT_POSTFIELDS` option has been set, if the same handle previously was used to issue a `PUT` request which used that callback. This flaw may surprise the application and cause it to misbehave and either send off the wrong data or use memory after free or similar in the subsequent `POST` request. The problem exists in the logic for a reused handle when it is changed from a PUT to a POST.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-668" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 4.8 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Jan/19", + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://www.openwall.com/lists/oss-security/2023/05/17/4", + "https://access.redhat.com/errata/RHSA-2023:0333", + "https://access.redhat.com/security/cve/CVE-2022-32221", + "https://bugzilla.redhat.com/2135411", + "https://bugzilla.redhat.com/show_bug.cgi?id=2135411", + "https://curl.se/docs/CVE-2022-32221.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32221", + "https://errata.almalinux.org/9/ALSA-2023-0333.html", + "https://errata.rockylinux.org/RLSA-2023:0333", + "https://hackerone.com/reports/1704017", + "https://linux.oracle.com/cve/CVE-2022-32221.html", + "https://linux.oracle.com/errata/ELSA-2023-0333.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32221", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20230110-0006/", + "https://security.netapp.com/advisory/ntap-20230208-0002/", + "https://support.apple.com/kb/HT213604", + "https://support.apple.com/kb/HT213605", + "https://ubuntu.com/security/notices/USN-5702-1", + "https://ubuntu.com/security/notices/USN-5702-2", + "https://ubuntu.com/security/notices/USN-5823-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32221", + "https://www.debian.org/security/2023/dsa-5330" + ], + "PublishedDate": "2022-12-05T22:15:00Z", + "LastModifiedDate": "2023-05-17T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-23914", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23914", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS ignored on multiple requests", + "Description": "A cleartext transmission of sensitive information vulnerability exists in curl \u003cv7.88.0 that could cause HSTS functionality fail when multiple URLs are requested serially. Using its HSTS support, curl can be instructed to use HTTPS instead of usingan insecure clear-text HTTP step even when HTTP is provided in the URL. ThisHSTS mechanism would however surprisingly be ignored by subsequent transferswhen done on the same command line because the state would not be properlycarried on.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-23914", + "https://curl.se/docs/CVE-2023-23914.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23914", + "https://hackerone.com/reports/1813864", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23914", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23914" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-03-09T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42916", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42916", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS bypass via IDN", + "Description": "In curl before 7.86.0, the HSTS check could be bypassed to trick it into staying with HTTP. Using its HSTS support, curl can be instructed to use HTTPS directly (instead of using an insecure cleartext HTTP step) even when HTTP is provided in the URL. This mechanism could be bypassed if the host name in the given URL uses IDN characters that get replaced with ASCII counterparts as part of the IDN conversion, e.g., using the character UTF-8 U+3002 (IDEOGRAPHIC FULL STOP) instead of the common ASCII full stop of U+002E (.). The earliest affected version is 7.77.0 2021-05-26.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Jan/19", + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://www.openwall.com/lists/oss-security/2022/12/21/1", + "https://access.redhat.com/security/cve/CVE-2022-42916", + "https://curl.se/docs/CVE-2022-42916.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42916", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/37YEVVC6NAF6H7UHH6YAUY5QEVY6LIH2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HVU3IMZCKR4VE6KJ4GCWRL2ILLC6OV76/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q27V5YYMXUVI6PRZQVECON32XPVWTKDK/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42916", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20221209-0010/", + "https://support.apple.com/kb/HT213604", + "https://support.apple.com/kb/HT213605", + "https://ubuntu.com/security/notices/USN-5702-1", + "https://www.cve.org/CVERecord?id=CVE-2022-42916" + ], + "PublishedDate": "2022-10-29T02:15:00Z", + "LastModifiedDate": "2023-03-28T14:13:00Z" + }, + { + "VulnerabilityID": "CVE-2022-43551", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-43551", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS bypass via IDN", + "Description": "A vulnerability exists in curl \u003c7.87.0 HSTS check that could be bypassed to trick it to keep using HTTP. Using its HSTS support, curl can be instructed to use HTTPS instead of using an insecure clear-text HTTP step even when HTTP is provided in the URL. However, the HSTS mechanism could be bypassed if the host name in the given URL first uses IDN characters that get replaced to ASCII counterparts as part of the IDN conversion. Like using the character UTF-8 U+3002 (IDEOGRAPHIC FULL STOP) instead of the common ASCII full stop (U+002E) `.`. Then in a subsequent request, it does not detect the HSTS state and makes a clear text transfer. Because it would store the info IDN encoded but look for it IDN decoded.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-43551", + "https://curl.se/docs/CVE-2022-43551.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43551", + "https://hackerone.com/reports/1755083", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/TVWZW5CNSJ7UYAF2BGSYAWAEXDJYUBHA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-43551", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://ubuntu.com/security/notices/USN-5788-1", + "https://www.cve.org/CVERecord?id=CVE-2022-43551" + ], + "PublishedDate": "2022-12-23T15:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27533", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27533", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TELNET option IAC injection", + "Description": "A vulnerability in input validation exists in curl \u003c8.0 during communication using the TELNET protocol may allow an attacker to pass on maliciously crafted user name and \"telnet options\" during server negotiation. The lack of proper input scrubbing allows an attacker to send content or perform option negotiation without the application's intent. This vulnerability could be exploited if an application allows user input, thereby enabling attackers to execute arbitrary code on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:L/A:N", + "V3Score": 3.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27533", + "https://curl.se/docs/CVE-2023-27533.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27533", + "https://hackerone.com/reports/1891474", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27533", + "https://security.netapp.com/advisory/ntap-20230420-0011/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://ubuntu.com/security/notices/USN-5964-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27533" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-21T23:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27534", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27534", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "SFTP path ~ resolving discrepancy", + "Description": "A path traversal vulnerability exists in curl \u003c8.0.0 SFTP implementation causes the tilde (~) character to be wrongly replaced when used as a prefix in the first path element, in addition to its intended use as the first element to indicate a path relative to the user's home directory. Attackers can exploit this flaw to bypass filtering or execute arbitrary code by crafting a path like /~2/foo while accessing a server with a specific user.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-22" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27534", + "https://curl.se/docs/CVE-2023-27534.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27534", + "https://hackerone.com/reports/1892351", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27534", + "https://security.netapp.com/advisory/ntap-20230420-0012/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://www.cve.org/CVERecord?id=CVE-2023-27534" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-20T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27535", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27535", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "FTP too eager connection reuse", + "Description": "An authentication bypass vulnerability exists in libcurl \u003c8.0.0 in the FTP connection reuse feature that can result in wrong credentials being used during subsequent transfers. Previously created connections are kept in a connection pool for reuse if they match the current setup. However, certain FTP settings such as CURLOPT_FTP_ACCOUNT, CURLOPT_FTP_ALTERNATIVE_TO_USER, CURLOPT_FTP_SSL_CCC, and CURLOPT_USE_SSL were not included in the configuration match checks, causing them to match too easily. This could lead to libcurl using the wrong credentials when performing a transfer, potentially allowing unauthorized access to sensitive information.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-287" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2650", + "https://access.redhat.com/security/cve/CVE-2023-27535", + "https://bugzilla.redhat.com/2179073", + "https://bugzilla.redhat.com/show_bug.cgi?id=2179073", + "https://bugzilla.redhat.com/show_bug.cgi?id=2188029", + "https://curl.se/docs/CVE-2023-27535.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27535", + "https://errata.almalinux.org/9/ALSA-2023-2650.html", + "https://errata.rockylinux.org/RLSA-2023:3106", + "https://hackerone.com/reports/1892780", + "https://linux.oracle.com/cve/CVE-2023-27535.html", + "https://linux.oracle.com/errata/ELSA-2023-3106.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27535", + "https://security.netapp.com/advisory/ntap-20230420-0010/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://ubuntu.com/security/notices/USN-5964-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27535" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-21T23:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-43552", + "VendorIDs": [ + "DSA-5330-1" + ], + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-43552", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Use-after-free triggered by an HTTP proxy deny response", + "Description": "A use after free vulnerability exists in curl \u003c7.87.0. Curl can be asked to *tunnel* virtually all protocols it supports through an HTTP proxy. HTTP proxies can (and often do) deny such tunnel operations. When getting denied to tunnel the specific protocols SMB or TELNET, curl would use a heap-allocated struct after it had been freed, in its transfer shutdown code path.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Mar/17", + "https://access.redhat.com/errata/RHSA-2023:2478", + "https://access.redhat.com/security/cve/CVE-2022-43552", + "https://bugzilla.redhat.com/2120718", + "https://bugzilla.redhat.com/2152652", + "https://curl.se/docs/CVE-2022-43552.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43552", + "https://errata.almalinux.org/9/ALSA-2023-2478.html", + "https://hackerone.com/reports/1764858", + "https://linux.oracle.com/cve/CVE-2022-43552.html", + "https://linux.oracle.com/errata/ELSA-2023-2963.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-43552", + "https://security.netapp.com/advisory/ntap-20230214-0002/", + "https://support.apple.com/kb/HT213670", + "https://ubuntu.com/security/notices/USN-5788-1", + "https://ubuntu.com/security/notices/USN-5894-1", + "https://www.cve.org/CVERecord?id=CVE-2022-43552" + ], + "PublishedDate": "2023-02-09T20:15:00Z", + "LastModifiedDate": "2023-03-28T05:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-23915", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23915", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS amnesia with --parallel", + "Description": "A cleartext transmission of sensitive information vulnerability exists in curl \u003cv7.88.0 that could cause HSTS functionality to behave incorrectly when multiple URLs are requested in parallel. Using its HSTS support, curl can be instructed to use HTTPS instead of using an insecure clear-text HTTP step even when HTTP is provided in the URL. This HSTS mechanism would however surprisingly fail when multiple transfers are done in parallel as the HSTS cache file gets overwritten by the most recentlycompleted transfer. A later HTTP-only transfer to the earlier host name would then *not* get upgraded properly to HSTS.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N", + "V3Score": 4.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-23915", + "https://curl.se/docs/CVE-2023-23915.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23915", + "https://hackerone.com/reports/1826048", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23915", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23915" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-03-09T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-23916", + "VendorIDs": [ + "DSA-5365-1" + ], + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u7", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23916", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTP multi-header compression denial of service", + "Description": "An allocation of resources without limits or throttling vulnerability exists in curl \u003cv7.88.0 based on the \"chained\" HTTP compression algorithms, meaning that a server response can be compressed multiple times and potentially with differentalgorithms. The number of acceptable \"links\" in this \"decompression chain\" wascapped, but the cap was implemented on a per-header basis allowing a maliciousserver to insert a virtually unlimited number of compression steps simply byusing many headers. The use of such a decompression chain could result in a \"malloc bomb\", making curl end up spending enormous amounts of allocated heap memory, or trying to and returning out of memory errors.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:1701", + "https://access.redhat.com/security/cve/CVE-2023-23916", + "https://bugzilla.redhat.com/2167815", + "https://bugzilla.redhat.com/show_bug.cgi?id=2167815", + "https://curl.se/docs/CVE-2023-23916.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23916", + "https://errata.almalinux.org/9/ALSA-2023-1701.html", + "https://errata.rockylinux.org/RLSA-2023:1140", + "https://hackerone.com/reports/1826048", + "https://linux.oracle.com/cve/CVE-2023-23916.html", + "https://linux.oracle.com/errata/ELSA-2023-1701.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00035.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BQKE6TXYDHOTFHLTBZ5X73GTKI7II5KO/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23916", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23916", + "https://www.debian.org/security/2023/dsa-5365" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-04-18T16:49:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27536", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27536", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "GSS delegation too eager connection re-use", + "Description": "An authentication bypass vulnerability exists libcurl \u003c8.0.0 in the connection reuse feature which can reuse previously established connections with incorrect user permissions due to a failure to check for changes in the CURLOPT_GSSAPI_DELEGATION option. This vulnerability affects krb5/kerberos/negotiate/GSSAPI transfers and could potentially result in unauthorized access to sensitive information. The safest option is to not reuse connections if the CURLOPT_GSSAPI_DELEGATION option has been changed.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-287" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27536", + "https://curl.se/docs/CVE-2023-27536.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27536", + "https://hackerone.com/reports/1895135", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27536", + "https://security.netapp.com/advisory/ntap-20230420-0010/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://ubuntu.com/security/notices/USN-5964-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27536" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-06-06T20:34:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27538", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27538", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "SSH connection too eager reuse still", + "Description": "An authentication bypass vulnerability exists in libcurl prior to v8.0.0 where it reuses a previously established SSH connection despite the fact that an SSH option was modified, which should have prevented reuse. libcurl maintains a pool of previously used connections to reuse them for subsequent transfers if the configurations match. However, two SSH settings were omitted from the configuration check, allowing them to match easily, potentially leading to the reuse of an inappropriate connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-287" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27538", + "https://curl.se/docs/CVE-2023-27538.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27538", + "https://hackerone.com/reports/1898475", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27538", + "https://security.netapp.com/advisory/ntap-20230420-0010/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://www.cve.org/CVERecord?id=CVE-2023-27538" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-21T23:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28321", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28321", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "IDN wildcard match may lead to Improper Cerificate Validation", + "Description": "An improper certificate validation vulnerability exists in curl \u003cv8.1.0 in the way it supports matching of wildcard patterns when listed as \"Subject Alternative Name\" in TLS server certificates. curl can be built to use its own name matching function for TLS rather than one provided by a TLS library. This private wildcard matching function would match IDN (International Domain Name) hosts incorrectly and could as a result accept patterns that otherwise should mismatch. IDN hostnames are converted to puny code before used for certificate checks. Puny coded names always start with `xn--` and should not be allowed to pattern match, but the wildcard check in curl could still check for `x*`, which would match even though the IDN name most likely contained nothing even resembling an `x`.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28321", + "https://curl.se/docs/CVE-2023-28321.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28321", + "https://hackerone.com/reports/1950627", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F4I75RDGX5ULSSCBE5BF3P5I5SFO7ULQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z2LIWHWKOVH24COGGBCVOWDXXIUPKOMK/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28321", + "https://security.netapp.com/advisory/ntap-20230609-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-28321" + ], + "PublishedDate": "2023-05-26T21:15:00Z", + "LastModifiedDate": "2023-06-16T19:17:00Z" + }, + { + "VulnerabilityID": "CVE-2021-22922", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-22922", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "curl: Content not matching hash in Metalink is not being discarded", + "Description": "When curl is instructed to download content using the metalink feature, thecontents is verified against a hash provided in the metalink XML file.The metalink XML file points out to the client how to get the same contentfrom a set of different URLs, potentially hosted by different servers and theclient can then download the file from one or several of them. In a serial orparallel manner.If one of the servers hosting the contents has been breached and the contentsof the specific file on that server is replaced with a modified payload, curlshould detect this when the hash of the file mismatches after a completeddownload. It should remove the contents and instead try getting the contentsfrom another URL. This is not done, and instead such a hash mismatch is onlymentioned in text and the potentially malicious content is kept in the file ondisk.", + "Severity": "LOW", + "CweIDs": [ + "CWE-755" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 4.3, + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-22922", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://curl.se/docs/CVE-2021-22922.html", + "https://hackerone.com/reports/1213175", + "https://linux.oracle.com/cve/CVE-2021-22922.html", + "https://linux.oracle.com/errata/ELSA-2021-3582.html", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cusers.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cusers.kafka.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRUCW2UVNYUDZF72DQLFQR4PJEC6CF7V/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-22922", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20210902-0003/", + "https://www.cve.org/CVERecord?id=CVE-2021-22922", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-08-05T21:15:00Z", + "LastModifiedDate": "2023-01-05T18:16:00Z" + }, + { + "VulnerabilityID": "CVE-2021-22923", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-22923", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "curl: Metalink download sends credentials", + "Description": "When curl is instructed to get content using the metalink feature, and a user name and password are used to download the metalink XML file, those same credentials are then subsequently passed on to each of the servers from which curl will download or try to download the contents from. Often contrary to the user's expectations and intentions and without telling the user it happened.", + "Severity": "LOW", + "CweIDs": [ + "CWE-522" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:H/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:N/A:N", + "V2Score": 2.6, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:N/A:N", + "V3Score": 5.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-22923", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://curl.se/docs/CVE-2021-22923.html", + "https://hackerone.com/reports/1213181", + "https://linux.oracle.com/cve/CVE-2021-22923.html", + "https://linux.oracle.com/errata/ELSA-2021-3582.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRUCW2UVNYUDZF72DQLFQR4PJEC6CF7V/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-22923", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20210902-0003/", + "https://www.cve.org/CVERecord?id=CVE-2021-22923", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-08-05T21:15:00Z", + "LastModifiedDate": "2023-01-05T18:17:00Z" + }, + { + "VulnerabilityID": "CVE-2022-35252", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u3", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-35252", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Incorrect handling of control code characters in cookies", + "Description": "When curl is used to retrieve and parse cookies from a HTTP(S) server, itaccepts cookies using control codes that when later are sent back to a HTTPserver might make the server return 400 responses. Effectively allowing a\"sister site\" to deny service to all siblings.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.1 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://seclists.org/fulldisclosure/2023/Jan/21", + "https://access.redhat.com/errata/RHSA-2023:2478", + "https://access.redhat.com/security/cve/CVE-2022-35252", + "https://bugzilla.redhat.com/2120718", + "https://bugzilla.redhat.com/2152652", + "https://curl.se/docs/CVE-2022-35252.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35252", + "https://errata.almalinux.org/9/ALSA-2023-2478.html", + "https://hackerone.com/reports/1613943", + "https://linux.oracle.com/cve/CVE-2022-35252.html", + "https://linux.oracle.com/errata/ELSA-2023-2963.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-35252", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20220930-0005/", + "https://support.apple.com/kb/HT213603", + "https://support.apple.com/kb/HT213604", + "https://ubuntu.com/security/notices/USN-5587-1", + "https://www.cve.org/CVERecord?id=CVE-2022-35252", + "https://www.openwall.com/lists/oss-security/2022/08/31/2" + ], + "PublishedDate": "2022-09-23T14:15:00Z", + "LastModifiedDate": "2023-03-01T18:09:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28320", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28320", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "siglongjmp race condition may lead to crash", + "Description": "A denial of service vulnerability exists in curl \u003cv8.1.0 in the way libcurl provides several different backends for resolving host names, selected at build time. If it is built to use the synchronous resolver, it allows name resolves to time-out slow operations using `alarm()` and `siglongjmp()`. When doing this, libcurl used a global buffer that was not mutex protected and a multi-threaded application might therefore crash or otherwise misbehave.", + "Severity": "LOW", + "CweIDs": [ + "CWE-362", + "CWE-400" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28320", + "https://curl.se/docs/CVE-2023-28320.html", + "https://hackerone.com/reports/1929597", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28320", + "https://security.netapp.com/advisory/ntap-20230609-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-28320" + ], + "PublishedDate": "2023-05-26T21:15:00Z", + "LastModifiedDate": "2023-06-09T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28322", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28322", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "more POST-after-PUT confusion", + "Description": "An information disclosure vulnerability exists in curl \u003cv8.1.0 when doing HTTP(S) transfers, libcurl might erroneously use the read callback (`CURLOPT_READFUNCTION`) to ask for data to send, even when the `CURLOPT_POSTFIELDS` option has been set, if the same handle previously wasused to issue a `PUT` request which used that callback. This flaw may surprise the application and cause it to misbehave and either send off the wrong data or use memory after free or similar in the second transfer. The problem exists in the logic for a reused handle when it is (expected to be) changed from a PUT to a POST.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 3.7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28322", + "https://curl.se/docs/CVE-2023-28322.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28322", + "https://hackerone.com/reports/1954658", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F4I75RDGX5ULSSCBE5BF3P5I5SFO7ULQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z2LIWHWKOVH24COGGBCVOWDXXIUPKOMK/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28322", + "https://security.netapp.com/advisory/ntap-20230609-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-28322" + ], + "PublishedDate": "2023-05-26T21:15:00Z", + "LastModifiedDate": "2023-06-16T16:40:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3219", + "PkgID": "gpgv@2.2.27-2+deb11u2", + "PkgName": "gpgv", + "InstalledVersion": "2.2.27-2+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3219", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "denial of service issue (resource consumption) using compressed packets", + "Description": "GnuPG can be made to spin on a relatively small input by (for example) crafting a public key with thousands of signatures attached, compressed down to just a few KB.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-3219", + "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + "https://dev.gnupg.org/D556", + "https://dev.gnupg.org/T5993", + "https://marc.info/?l=oss-security\u0026m=165696590211434\u0026w=4", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + "https://security.netapp.com/advisory/ntap-20230324-0001/", + "https://www.cve.org/CVERecord?id=CVE-2022-3219" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-05-26T16:31:00Z" + }, + { + "VulnerabilityID": "CVE-2011-3374", + "PkgID": "libapt-pkg6.0@2.2.4", + "PkgName": "libapt-pkg6.0", + "InstalledVersion": "2.2.4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "PublishedDate": "2019-11-26T00:15:00Z", + "LastModifiedDate": "2021-02-09T16:08:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "libblkid1@2.36.1-8+deb11u1", + "PkgName": "libblkid1", + "InstalledVersion": "2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3999", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "FixedVersion": "2.31-13+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3999", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "Description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2023-02-12T23:43:00Z" + }, + { + "VulnerabilityID": "CVE-2010-4756", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "Severity": "LOW", + "CweIDs": [ + "CWE-399" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V2Score": 4 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V2Score": 5 + } + }, + "References": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756" + ], + "PublishedDate": "2011-03-02T20:00:00Z", + "LastModifiedDate": "2021-09-01T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-20796", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796" + ], + "PublishedDate": "2019-02-26T02:29:00Z", + "LastModifiedDate": "2019-11-05T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010022", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack guard protection bypass", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2021-06-10T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010023", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "Description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010024", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: ASLR bypass using cache of thread stack and heap", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-200" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010025", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: information disclosure of heap addresses of pthread_created thread", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-330" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9192", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192" + ], + "PublishedDate": "2019-02-26T18:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3999", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "FixedVersion": "2.31-13+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3999", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "Description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2023-02-12T23:43:00Z" + }, + { + "VulnerabilityID": "CVE-2010-4756", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "Severity": "LOW", + "CweIDs": [ + "CWE-399" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V2Score": 4 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V2Score": 5 + } + }, + "References": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756" + ], + "PublishedDate": "2011-03-02T20:00:00Z", + "LastModifiedDate": "2021-09-01T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-20796", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796" + ], + "PublishedDate": "2019-02-26T02:29:00Z", + "LastModifiedDate": "2019-11-05T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010022", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack guard protection bypass", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2021-06-10T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010023", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "Description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010024", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: ASLR bypass using cache of thread stack and heap", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-200" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010025", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: information disclosure of heap addresses of pthread_created thread", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-330" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9192", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192" + ], + "PublishedDate": "2019-02-26T18:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1304", + "PkgID": "libcom-err2@1.46.2-2", + "PkgName": "libcom-err2", + "InstalledVersion": "1.46.2-2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1304", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "e2fsprogs: out-of-bounds read/write via crafted filesystem", + "Description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125", + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 5.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8361", + "https://access.redhat.com/security/cve/CVE-2022-1304", + "https://bugzilla.redhat.com/2069726", + "https://bugzilla.redhat.com/show_bug.cgi?id=2069726", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1304", + "https://errata.almalinux.org/9/ALSA-2022-8361.html", + "https://errata.rockylinux.org/RLSA-2022:8361", + "https://linux.oracle.com/cve/CVE-2022-1304.html", + "https://linux.oracle.com/errata/ELSA-2022-8361.html", + "https://marc.info/?l=linux-ext4\u0026m=165056234501732\u0026w=2", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1304", + "https://ubuntu.com/security/notices/USN-5464-1", + "https://www.cve.org/CVERecord?id=CVE-2022-1304" + ], + "PublishedDate": "2022-04-14T21:15:00Z", + "LastModifiedDate": "2023-02-12T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32221", + "VendorIDs": [ + "DSA-5330-1" + ], + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32221", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "POST following PUT confusion", + "Description": "When doing HTTP(S) transfers, libcurl might erroneously use the read callback (`CURLOPT_READFUNCTION`) to ask for data to send, even when the `CURLOPT_POSTFIELDS` option has been set, if the same handle previously was used to issue a `PUT` request which used that callback. This flaw may surprise the application and cause it to misbehave and either send off the wrong data or use memory after free or similar in the subsequent `POST` request. The problem exists in the logic for a reused handle when it is changed from a PUT to a POST.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-668" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 4.8 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Jan/19", + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://www.openwall.com/lists/oss-security/2023/05/17/4", + "https://access.redhat.com/errata/RHSA-2023:0333", + "https://access.redhat.com/security/cve/CVE-2022-32221", + "https://bugzilla.redhat.com/2135411", + "https://bugzilla.redhat.com/show_bug.cgi?id=2135411", + "https://curl.se/docs/CVE-2022-32221.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32221", + "https://errata.almalinux.org/9/ALSA-2023-0333.html", + "https://errata.rockylinux.org/RLSA-2023:0333", + "https://hackerone.com/reports/1704017", + "https://linux.oracle.com/cve/CVE-2022-32221.html", + "https://linux.oracle.com/errata/ELSA-2023-0333.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32221", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20230110-0006/", + "https://security.netapp.com/advisory/ntap-20230208-0002/", + "https://support.apple.com/kb/HT213604", + "https://support.apple.com/kb/HT213605", + "https://ubuntu.com/security/notices/USN-5702-1", + "https://ubuntu.com/security/notices/USN-5702-2", + "https://ubuntu.com/security/notices/USN-5823-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32221", + "https://www.debian.org/security/2023/dsa-5330" + ], + "PublishedDate": "2022-12-05T22:15:00Z", + "LastModifiedDate": "2023-05-17T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-23914", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23914", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS ignored on multiple requests", + "Description": "A cleartext transmission of sensitive information vulnerability exists in curl \u003cv7.88.0 that could cause HSTS functionality fail when multiple URLs are requested serially. Using its HSTS support, curl can be instructed to use HTTPS instead of usingan insecure clear-text HTTP step even when HTTP is provided in the URL. ThisHSTS mechanism would however surprisingly be ignored by subsequent transferswhen done on the same command line because the state would not be properlycarried on.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-23914", + "https://curl.se/docs/CVE-2023-23914.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23914", + "https://hackerone.com/reports/1813864", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23914", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23914" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-03-09T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42916", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42916", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS bypass via IDN", + "Description": "In curl before 7.86.0, the HSTS check could be bypassed to trick it into staying with HTTP. Using its HSTS support, curl can be instructed to use HTTPS directly (instead of using an insecure cleartext HTTP step) even when HTTP is provided in the URL. This mechanism could be bypassed if the host name in the given URL uses IDN characters that get replaced with ASCII counterparts as part of the IDN conversion, e.g., using the character UTF-8 U+3002 (IDEOGRAPHIC FULL STOP) instead of the common ASCII full stop of U+002E (.). The earliest affected version is 7.77.0 2021-05-26.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Jan/19", + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://www.openwall.com/lists/oss-security/2022/12/21/1", + "https://access.redhat.com/security/cve/CVE-2022-42916", + "https://curl.se/docs/CVE-2022-42916.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42916", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/37YEVVC6NAF6H7UHH6YAUY5QEVY6LIH2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HVU3IMZCKR4VE6KJ4GCWRL2ILLC6OV76/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q27V5YYMXUVI6PRZQVECON32XPVWTKDK/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42916", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20221209-0010/", + "https://support.apple.com/kb/HT213604", + "https://support.apple.com/kb/HT213605", + "https://ubuntu.com/security/notices/USN-5702-1", + "https://www.cve.org/CVERecord?id=CVE-2022-42916" + ], + "PublishedDate": "2022-10-29T02:15:00Z", + "LastModifiedDate": "2023-03-28T14:13:00Z" + }, + { + "VulnerabilityID": "CVE-2022-43551", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-43551", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS bypass via IDN", + "Description": "A vulnerability exists in curl \u003c7.87.0 HSTS check that could be bypassed to trick it to keep using HTTP. Using its HSTS support, curl can be instructed to use HTTPS instead of using an insecure clear-text HTTP step even when HTTP is provided in the URL. However, the HSTS mechanism could be bypassed if the host name in the given URL first uses IDN characters that get replaced to ASCII counterparts as part of the IDN conversion. Like using the character UTF-8 U+3002 (IDEOGRAPHIC FULL STOP) instead of the common ASCII full stop (U+002E) `.`. Then in a subsequent request, it does not detect the HSTS state and makes a clear text transfer. Because it would store the info IDN encoded but look for it IDN decoded.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-43551", + "https://curl.se/docs/CVE-2022-43551.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43551", + "https://hackerone.com/reports/1755083", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/TVWZW5CNSJ7UYAF2BGSYAWAEXDJYUBHA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-43551", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://ubuntu.com/security/notices/USN-5788-1", + "https://www.cve.org/CVERecord?id=CVE-2022-43551" + ], + "PublishedDate": "2022-12-23T15:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27533", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27533", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TELNET option IAC injection", + "Description": "A vulnerability in input validation exists in curl \u003c8.0 during communication using the TELNET protocol may allow an attacker to pass on maliciously crafted user name and \"telnet options\" during server negotiation. The lack of proper input scrubbing allows an attacker to send content or perform option negotiation without the application's intent. This vulnerability could be exploited if an application allows user input, thereby enabling attackers to execute arbitrary code on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:L/A:N", + "V3Score": 3.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27533", + "https://curl.se/docs/CVE-2023-27533.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27533", + "https://hackerone.com/reports/1891474", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27533", + "https://security.netapp.com/advisory/ntap-20230420-0011/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://ubuntu.com/security/notices/USN-5964-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27533" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-21T23:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27534", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27534", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "SFTP path ~ resolving discrepancy", + "Description": "A path traversal vulnerability exists in curl \u003c8.0.0 SFTP implementation causes the tilde (~) character to be wrongly replaced when used as a prefix in the first path element, in addition to its intended use as the first element to indicate a path relative to the user's home directory. Attackers can exploit this flaw to bypass filtering or execute arbitrary code by crafting a path like /~2/foo while accessing a server with a specific user.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-22" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27534", + "https://curl.se/docs/CVE-2023-27534.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27534", + "https://hackerone.com/reports/1892351", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27534", + "https://security.netapp.com/advisory/ntap-20230420-0012/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://www.cve.org/CVERecord?id=CVE-2023-27534" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-20T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27535", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27535", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "FTP too eager connection reuse", + "Description": "An authentication bypass vulnerability exists in libcurl \u003c8.0.0 in the FTP connection reuse feature that can result in wrong credentials being used during subsequent transfers. Previously created connections are kept in a connection pool for reuse if they match the current setup. However, certain FTP settings such as CURLOPT_FTP_ACCOUNT, CURLOPT_FTP_ALTERNATIVE_TO_USER, CURLOPT_FTP_SSL_CCC, and CURLOPT_USE_SSL were not included in the configuration match checks, causing them to match too easily. This could lead to libcurl using the wrong credentials when performing a transfer, potentially allowing unauthorized access to sensitive information.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-287" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2650", + "https://access.redhat.com/security/cve/CVE-2023-27535", + "https://bugzilla.redhat.com/2179073", + "https://bugzilla.redhat.com/show_bug.cgi?id=2179073", + "https://bugzilla.redhat.com/show_bug.cgi?id=2188029", + "https://curl.se/docs/CVE-2023-27535.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27535", + "https://errata.almalinux.org/9/ALSA-2023-2650.html", + "https://errata.rockylinux.org/RLSA-2023:3106", + "https://hackerone.com/reports/1892780", + "https://linux.oracle.com/cve/CVE-2023-27535.html", + "https://linux.oracle.com/errata/ELSA-2023-3106.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27535", + "https://security.netapp.com/advisory/ntap-20230420-0010/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://ubuntu.com/security/notices/USN-5964-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27535" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-21T23:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-43552", + "VendorIDs": [ + "DSA-5330-1" + ], + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-43552", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Use-after-free triggered by an HTTP proxy deny response", + "Description": "A use after free vulnerability exists in curl \u003c7.87.0. Curl can be asked to *tunnel* virtually all protocols it supports through an HTTP proxy. HTTP proxies can (and often do) deny such tunnel operations. When getting denied to tunnel the specific protocols SMB or TELNET, curl would use a heap-allocated struct after it had been freed, in its transfer shutdown code path.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Mar/17", + "https://access.redhat.com/errata/RHSA-2023:2478", + "https://access.redhat.com/security/cve/CVE-2022-43552", + "https://bugzilla.redhat.com/2120718", + "https://bugzilla.redhat.com/2152652", + "https://curl.se/docs/CVE-2022-43552.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43552", + "https://errata.almalinux.org/9/ALSA-2023-2478.html", + "https://hackerone.com/reports/1764858", + "https://linux.oracle.com/cve/CVE-2022-43552.html", + "https://linux.oracle.com/errata/ELSA-2023-2963.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-43552", + "https://security.netapp.com/advisory/ntap-20230214-0002/", + "https://support.apple.com/kb/HT213670", + "https://ubuntu.com/security/notices/USN-5788-1", + "https://ubuntu.com/security/notices/USN-5894-1", + "https://www.cve.org/CVERecord?id=CVE-2022-43552" + ], + "PublishedDate": "2023-02-09T20:15:00Z", + "LastModifiedDate": "2023-03-28T05:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-23915", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23915", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS amnesia with --parallel", + "Description": "A cleartext transmission of sensitive information vulnerability exists in curl \u003cv7.88.0 that could cause HSTS functionality to behave incorrectly when multiple URLs are requested in parallel. Using its HSTS support, curl can be instructed to use HTTPS instead of using an insecure clear-text HTTP step even when HTTP is provided in the URL. This HSTS mechanism would however surprisingly fail when multiple transfers are done in parallel as the HSTS cache file gets overwritten by the most recentlycompleted transfer. A later HTTP-only transfer to the earlier host name would then *not* get upgraded properly to HSTS.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N", + "V3Score": 4.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-23915", + "https://curl.se/docs/CVE-2023-23915.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23915", + "https://hackerone.com/reports/1826048", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23915", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23915" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-03-09T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-23916", + "VendorIDs": [ + "DSA-5365-1" + ], + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u7", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23916", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTP multi-header compression denial of service", + "Description": "An allocation of resources without limits or throttling vulnerability exists in curl \u003cv7.88.0 based on the \"chained\" HTTP compression algorithms, meaning that a server response can be compressed multiple times and potentially with differentalgorithms. The number of acceptable \"links\" in this \"decompression chain\" wascapped, but the cap was implemented on a per-header basis allowing a maliciousserver to insert a virtually unlimited number of compression steps simply byusing many headers. The use of such a decompression chain could result in a \"malloc bomb\", making curl end up spending enormous amounts of allocated heap memory, or trying to and returning out of memory errors.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:1701", + "https://access.redhat.com/security/cve/CVE-2023-23916", + "https://bugzilla.redhat.com/2167815", + "https://bugzilla.redhat.com/show_bug.cgi?id=2167815", + "https://curl.se/docs/CVE-2023-23916.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23916", + "https://errata.almalinux.org/9/ALSA-2023-1701.html", + "https://errata.rockylinux.org/RLSA-2023:1140", + "https://hackerone.com/reports/1826048", + "https://linux.oracle.com/cve/CVE-2023-23916.html", + "https://linux.oracle.com/errata/ELSA-2023-1701.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00035.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BQKE6TXYDHOTFHLTBZ5X73GTKI7II5KO/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23916", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23916", + "https://www.debian.org/security/2023/dsa-5365" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-04-18T16:49:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27536", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27536", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "GSS delegation too eager connection re-use", + "Description": "An authentication bypass vulnerability exists libcurl \u003c8.0.0 in the connection reuse feature which can reuse previously established connections with incorrect user permissions due to a failure to check for changes in the CURLOPT_GSSAPI_DELEGATION option. This vulnerability affects krb5/kerberos/negotiate/GSSAPI transfers and could potentially result in unauthorized access to sensitive information. The safest option is to not reuse connections if the CURLOPT_GSSAPI_DELEGATION option has been changed.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-287" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27536", + "https://curl.se/docs/CVE-2023-27536.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27536", + "https://hackerone.com/reports/1895135", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27536", + "https://security.netapp.com/advisory/ntap-20230420-0010/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://ubuntu.com/security/notices/USN-5964-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27536" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-06-06T20:34:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27538", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27538", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "SSH connection too eager reuse still", + "Description": "An authentication bypass vulnerability exists in libcurl prior to v8.0.0 where it reuses a previously established SSH connection despite the fact that an SSH option was modified, which should have prevented reuse. libcurl maintains a pool of previously used connections to reuse them for subsequent transfers if the configurations match. However, two SSH settings were omitted from the configuration check, allowing them to match easily, potentially leading to the reuse of an inappropriate connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-287" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27538", + "https://curl.se/docs/CVE-2023-27538.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27538", + "https://hackerone.com/reports/1898475", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27538", + "https://security.netapp.com/advisory/ntap-20230420-0010/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://www.cve.org/CVERecord?id=CVE-2023-27538" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-21T23:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28321", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28321", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "IDN wildcard match may lead to Improper Cerificate Validation", + "Description": "An improper certificate validation vulnerability exists in curl \u003cv8.1.0 in the way it supports matching of wildcard patterns when listed as \"Subject Alternative Name\" in TLS server certificates. curl can be built to use its own name matching function for TLS rather than one provided by a TLS library. This private wildcard matching function would match IDN (International Domain Name) hosts incorrectly and could as a result accept patterns that otherwise should mismatch. IDN hostnames are converted to puny code before used for certificate checks. Puny coded names always start with `xn--` and should not be allowed to pattern match, but the wildcard check in curl could still check for `x*`, which would match even though the IDN name most likely contained nothing even resembling an `x`.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28321", + "https://curl.se/docs/CVE-2023-28321.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28321", + "https://hackerone.com/reports/1950627", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F4I75RDGX5ULSSCBE5BF3P5I5SFO7ULQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z2LIWHWKOVH24COGGBCVOWDXXIUPKOMK/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28321", + "https://security.netapp.com/advisory/ntap-20230609-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-28321" + ], + "PublishedDate": "2023-05-26T21:15:00Z", + "LastModifiedDate": "2023-06-16T19:17:00Z" + }, + { + "VulnerabilityID": "CVE-2021-22922", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-22922", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "curl: Content not matching hash in Metalink is not being discarded", + "Description": "When curl is instructed to download content using the metalink feature, thecontents is verified against a hash provided in the metalink XML file.The metalink XML file points out to the client how to get the same contentfrom a set of different URLs, potentially hosted by different servers and theclient can then download the file from one or several of them. In a serial orparallel manner.If one of the servers hosting the contents has been breached and the contentsof the specific file on that server is replaced with a modified payload, curlshould detect this when the hash of the file mismatches after a completeddownload. It should remove the contents and instead try getting the contentsfrom another URL. This is not done, and instead such a hash mismatch is onlymentioned in text and the potentially malicious content is kept in the file ondisk.", + "Severity": "LOW", + "CweIDs": [ + "CWE-755" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 4.3, + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-22922", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://curl.se/docs/CVE-2021-22922.html", + "https://hackerone.com/reports/1213175", + "https://linux.oracle.com/cve/CVE-2021-22922.html", + "https://linux.oracle.com/errata/ELSA-2021-3582.html", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cusers.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cusers.kafka.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRUCW2UVNYUDZF72DQLFQR4PJEC6CF7V/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-22922", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20210902-0003/", + "https://www.cve.org/CVERecord?id=CVE-2021-22922", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-08-05T21:15:00Z", + "LastModifiedDate": "2023-01-05T18:16:00Z" + }, + { + "VulnerabilityID": "CVE-2021-22923", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-22923", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "curl: Metalink download sends credentials", + "Description": "When curl is instructed to get content using the metalink feature, and a user name and password are used to download the metalink XML file, those same credentials are then subsequently passed on to each of the servers from which curl will download or try to download the contents from. Often contrary to the user's expectations and intentions and without telling the user it happened.", + "Severity": "LOW", + "CweIDs": [ + "CWE-522" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:H/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:N/A:N", + "V2Score": 2.6, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:N/A:N", + "V3Score": 5.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-22923", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://curl.se/docs/CVE-2021-22923.html", + "https://hackerone.com/reports/1213181", + "https://linux.oracle.com/cve/CVE-2021-22923.html", + "https://linux.oracle.com/errata/ELSA-2021-3582.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRUCW2UVNYUDZF72DQLFQR4PJEC6CF7V/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-22923", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20210902-0003/", + "https://www.cve.org/CVERecord?id=CVE-2021-22923", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-08-05T21:15:00Z", + "LastModifiedDate": "2023-01-05T18:17:00Z" + }, + { + "VulnerabilityID": "CVE-2022-35252", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u3", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-35252", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Incorrect handling of control code characters in cookies", + "Description": "When curl is used to retrieve and parse cookies from a HTTP(S) server, itaccepts cookies using control codes that when later are sent back to a HTTPserver might make the server return 400 responses. Effectively allowing a\"sister site\" to deny service to all siblings.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.1 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://seclists.org/fulldisclosure/2023/Jan/21", + "https://access.redhat.com/errata/RHSA-2023:2478", + "https://access.redhat.com/security/cve/CVE-2022-35252", + "https://bugzilla.redhat.com/2120718", + "https://bugzilla.redhat.com/2152652", + "https://curl.se/docs/CVE-2022-35252.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35252", + "https://errata.almalinux.org/9/ALSA-2023-2478.html", + "https://hackerone.com/reports/1613943", + "https://linux.oracle.com/cve/CVE-2022-35252.html", + "https://linux.oracle.com/errata/ELSA-2023-2963.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-35252", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20220930-0005/", + "https://support.apple.com/kb/HT213603", + "https://support.apple.com/kb/HT213604", + "https://ubuntu.com/security/notices/USN-5587-1", + "https://www.cve.org/CVERecord?id=CVE-2022-35252", + "https://www.openwall.com/lists/oss-security/2022/08/31/2" + ], + "PublishedDate": "2022-09-23T14:15:00Z", + "LastModifiedDate": "2023-03-01T18:09:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28320", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28320", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "siglongjmp race condition may lead to crash", + "Description": "A denial of service vulnerability exists in curl \u003cv8.1.0 in the way libcurl provides several different backends for resolving host names, selected at build time. If it is built to use the synchronous resolver, it allows name resolves to time-out slow operations using `alarm()` and `siglongjmp()`. When doing this, libcurl used a global buffer that was not mutex protected and a multi-threaded application might therefore crash or otherwise misbehave.", + "Severity": "LOW", + "CweIDs": [ + "CWE-362", + "CWE-400" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28320", + "https://curl.se/docs/CVE-2023-28320.html", + "https://hackerone.com/reports/1929597", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28320", + "https://security.netapp.com/advisory/ntap-20230609-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-28320" + ], + "PublishedDate": "2023-05-26T21:15:00Z", + "LastModifiedDate": "2023-06-09T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28322", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28322", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "more POST-after-PUT confusion", + "Description": "An information disclosure vulnerability exists in curl \u003cv8.1.0 when doing HTTP(S) transfers, libcurl might erroneously use the read callback (`CURLOPT_READFUNCTION`) to ask for data to send, even when the `CURLOPT_POSTFIELDS` option has been set, if the same handle previously wasused to issue a `PUT` request which used that callback. This flaw may surprise the application and cause it to misbehave and either send off the wrong data or use memory after free or similar in the second transfer. The problem exists in the logic for a reused handle when it is (expected to be) changed from a PUT to a POST.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 3.7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28322", + "https://curl.se/docs/CVE-2023-28322.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28322", + "https://hackerone.com/reports/1954658", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F4I75RDGX5ULSSCBE5BF3P5I5SFO7ULQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z2LIWHWKOVH24COGGBCVOWDXXIUPKOMK/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28322", + "https://security.netapp.com/advisory/ntap-20230609-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-28322" + ], + "PublishedDate": "2023-05-26T21:15:00Z", + "LastModifiedDate": "2023-06-16T16:40:00Z" + }, + { + "VulnerabilityID": "CVE-2019-8457", + "PkgID": "libdb5.3@5.3.28+dfsg1-0.8", + "PkgName": "libdb5.3", + "InstalledVersion": "5.3.28+dfsg1-0.8", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-8457", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "sqlite: heap out-of-bound read in function rtreenode()", + "Description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + "https://access.redhat.com/security/cve/CVE-2019-8457", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://linux.oracle.com/cve/CVE-2019-8457.html", + "https://linux.oracle.com/errata/ELSA-2020-1810.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + "https://security.netapp.com/advisory/ntap-20190606-0002/", + "https://ubuntu.com/security/notices/USN-4004-1", + "https://ubuntu.com/security/notices/USN-4004-2", + "https://ubuntu.com/security/notices/USN-4019-1", + "https://ubuntu.com/security/notices/USN-4019-2", + "https://usn.ubuntu.com/4004-1/", + "https://usn.ubuntu.com/4004-2/", + "https://usn.ubuntu.com/4019-1/", + "https://usn.ubuntu.com/4019-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-8457", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.sqlite.org/releaselog/3_28_0.html", + "https://www.sqlite.org/src/info/90acdbfce9c08858" + ], + "PublishedDate": "2019-05-30T16:29:00Z", + "LastModifiedDate": "2021-07-31T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33560", + "PkgID": "libgcrypt20@1.8.7-6", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.7-6", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33560", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm", + "Description": "Libgcrypt before 1.8.8 and 1.9.x before 1.9.3 mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm, and the window size is not chosen appropriately. This, for example, affects use of ElGamal in OpenPGP.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + "https://access.redhat.com/security/cve/CVE-2021-33560", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + "https://dev.gnupg.org/T5305", + "https://dev.gnupg.org/T5328", + "https://dev.gnupg.org/T5466", + "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2021-4409.html", + "https://linux.oracle.com/cve/CVE-2021-33560.html", + "https://linux.oracle.com/errata/ELSA-2022-9263.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33560", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-06-08T11:15:00Z", + "LastModifiedDate": "2022-12-07T01:20:00Z" + }, + { + "VulnerabilityID": "CVE-2018-6829", + "PkgID": "libgcrypt20@1.8.7-6", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.7-6", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6829", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: ElGamal implementation doesn't have semantic security due to incorrectly encoded plaintexts possibly allowing to obtain sensitive information", + "Description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-6829", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + "https://www.cve.org/CVERecord?id=CVE-2018-6829", + "https://www.oracle.com/security-alerts/cpujan2020.html" + ], + "PublishedDate": "2018-02-07T23:29:00Z", + "LastModifiedDate": "2020-01-15T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0361", + "VendorIDs": [ + "DSA-5349-1" + ], + "PkgID": "libgnutls30@3.7.1-5+deb11u2", + "PkgName": "libgnutls30", + "InstalledVersion": "3.7.1-5+deb11u2", + "FixedVersion": "3.7.1-5+deb11u3", + "Layer": { + "Digest": "sha256:de23cba1e094e297f826549cabe47ff11b0038d5e6559a7e734b90754a689e06", + "DiffID": "sha256:2d934e5ade7a4a3582856351bf70b45bb5faa97a333b1480be71590eb9951960" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0361", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing side-channel in the TLS RSA key exchange code", + "Description": "A timing side-channel in the handling of RSA ClientKeyExchange messages was discovered in GnuTLS. This side-channel can be sufficient to recover the key encrypted in the RSA ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption the attacker would need to send a large amount of specially crafted messages to the vulnerable server. By recovering the secret from the ClientKeyExchange message, the attacker would be able to decrypt the application data exchanged over that connection.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:1141", + "https://access.redhat.com/security/cve/CVE-2023-0361", + "https://bugzilla.redhat.com/2162596", + "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + "https://errata.almalinux.org/9/ALSA-2023-1141.html", + "https://errata.rockylinux.org/RLSA-2023:1569", + "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + "https://gitlab.com/gnutls/gnutls/-/issues/1050", + "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + "https://linux.oracle.com/cve/CVE-2023-0361.html", + "https://linux.oracle.com/errata/ELSA-2023-1569.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + "https://security.netapp.com/advisory/ntap-20230324-0005/", + "https://ubuntu.com/security/notices/USN-5901-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0361" + ], + "PublishedDate": "2023-02-15T18:15:00Z", + "LastModifiedDate": "2023-05-23T17:22:00Z" + }, + { + "VulnerabilityID": "CVE-2011-3389", + "PkgID": "libgnutls30@3.7.1-5+deb11u2", + "PkgName": "libgnutls30", + "InstalledVersion": "3.7.1-5+deb11u2", + "Layer": { + "Digest": "sha256:de23cba1e094e297f826549cabe47ff11b0038d5e6559a7e734b90754a689e06", + "DiffID": "sha256:2d934e5ade7a4a3582856351bf70b45bb5faa97a333b1480be71590eb9951960" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3389", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)", + "Description": "The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a \"BEAST\" attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V2Score": 4.3 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V2Score": 4.3 + } + }, + "References": [ + "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + "http://curl.haxx.se/docs/adv_20120124B.html", + "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + "http://ekoparty.org/2011/juliano-rizzo.php", + "http://eprint.iacr.org/2004/111", + "http://eprint.iacr.org/2006/136", + "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + "http://marc.info/?l=bugtraq\u0026m=132750579901589\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=132872385320240\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=133365109612558\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=133728004526190\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=134254866602253\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=134254957702612\u0026w=2", + "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + "http://osvdb.org/74829", + "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + "http://secunia.com/advisories/45791", + "http://secunia.com/advisories/47998", + "http://secunia.com/advisories/48256", + "http://secunia.com/advisories/48692", + "http://secunia.com/advisories/48915", + "http://secunia.com/advisories/48948", + "http://secunia.com/advisories/49198", + "http://secunia.com/advisories/55322", + "http://secunia.com/advisories/55350", + "http://secunia.com/advisories/55351", + "http://security.gentoo.org/glsa/glsa-201203-02.xml", + "http://security.gentoo.org/glsa/glsa-201406-32.xml", + "http://support.apple.com/kb/HT4999", + "http://support.apple.com/kb/HT5001", + "http://support.apple.com/kb/HT5130", + "http://support.apple.com/kb/HT5281", + "http://support.apple.com/kb/HT5501", + "http://support.apple.com/kb/HT6150", + "http://technet.microsoft.com/security/advisory/2588513", + "http://vnhacker.blogspot.com/2011/09/beast.html", + "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + "http://www.debian.org/security/2012/dsa-2398", + "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + "http://www.ibm.com/developerworks/java/jdk/alerts/", + "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + "http://www.insecure.cl/Beast-SSL.rar", + "http://www.kb.cert.org/vuls/id/864643", + "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + "http://www.opera.com/docs/changelogs/mac/1151/", + "http://www.opera.com/docs/changelogs/mac/1160/", + "http://www.opera.com/docs/changelogs/unix/1151/", + "http://www.opera.com/docs/changelogs/unix/1160/", + "http://www.opera.com/docs/changelogs/windows/1151/", + "http://www.opera.com/docs/changelogs/windows/1160/", + "http://www.opera.com/support/kb/view/1004/", + "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + "http://www.securityfocus.com/bid/49388", + "http://www.securityfocus.com/bid/49778", + "http://www.securitytracker.com/id/1029190", + "http://www.securitytracker.com/id?1025997", + "http://www.securitytracker.com/id?1026103", + "http://www.securitytracker.com/id?1026704", + "http://www.ubuntu.com/usn/USN-1263-1", + "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + "https://access.redhat.com/security/cve/CVE-2011-3389", + "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + "https://bugzilla.novell.com/show_bug.cgi?id=719047", + "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + "https://hermes.opensuse.org/messages/13154861", + "https://hermes.opensuse.org/messages/13155432", + "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + "https://linux.oracle.com/cve/CVE-2011-3389.html", + "https://linux.oracle.com/errata/ELSA-2011-1380.html", + "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + "https://ubuntu.com/security/notices/USN-1263-1", + "https://www.cve.org/CVERecord?id=CVE-2011-3389" + ], + "PublishedDate": "2011-09-06T19:55:00Z", + "LastModifiedDate": "2022-11-29T15:56:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libgssapi-krb5-2@1.18.3-6+deb11u1", + "PkgName": "libgssapi-krb5-2", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libgssapi-krb5-2@1.18.3-6+deb11u1", + "PkgName": "libgssapi-krb5-2", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libk5crypto3@1.18.3-6+deb11u1", + "PkgName": "libk5crypto3", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libk5crypto3@1.18.3-6+deb11u1", + "PkgName": "libk5crypto3", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libkrb5-3@1.18.3-6+deb11u1", + "PkgName": "libkrb5-3", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libkrb5-3@1.18.3-6+deb11u1", + "PkgName": "libkrb5-3", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libkrb5support0@1.18.3-6+deb11u1", + "PkgName": "libkrb5support0", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libkrb5support0@1.18.3-6+deb11u1", + "PkgName": "libkrb5support0", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2953", + "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1", + "PkgName": "libldap-2.4-2", + "InstalledVersion": "2.4.57+dfsg-3+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2953", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "null pointer dereference in ber_memalloc_x function", + "Description": "A vulnerability was found in openldap. This security flaw causes a null pointer dereference in ber_memalloc_x() function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H", + "V3Score": 7.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-2953", + "https://bugs.openldap.org/show_bug.cgi?id=9904", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2953", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2953", + "https://www.cve.org/CVERecord?id=CVE-2023-2953" + ], + "PublishedDate": "2023-05-30T22:15:00Z", + "LastModifiedDate": "2023-06-06T17:17:00Z" + }, + { + "VulnerabilityID": "CVE-2015-3276", + "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1", + "PkgName": "libldap-2.4-2", + "InstalledVersion": "2.4.57+dfsg-3+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2015-3276", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "incorrect multi-keyword mode cipherstring parsing", + "Description": "The nss_parse_ciphers function in libraries/libldap/tls_m.c in OpenLDAP does not properly parse OpenSSL-style multi-keyword mode cipher strings, which might cause a weaker than intended cipher to be used and allow remote attackers to have unspecified impact via unknown vectors.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V2Score": 4.3 + } + }, + "References": [ + "http://rhn.redhat.com/errata/RHSA-2015-2131.html", + "http://www.oracle.com/technetwork/topics/security/linuxbulletinoct2015-2719645.html", + "http://www.securitytracker.com/id/1034221", + "https://access.redhat.com/security/cve/CVE-2015-3276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1238322", + "https://linux.oracle.com/cve/CVE-2015-3276.html", + "https://linux.oracle.com/errata/ELSA-2015-2131.html", + "https://nvd.nist.gov/vuln/detail/CVE-2015-3276", + "https://www.cve.org/CVERecord?id=CVE-2015-3276" + ], + "PublishedDate": "2015-12-07T20:59:00Z", + "LastModifiedDate": "2023-04-28T18:28:00Z" + }, + { + "VulnerabilityID": "CVE-2017-14159", + "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1", + "PkgName": "libldap-2.4-2", + "InstalledVersion": "2.4.57+dfsg-3+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-14159", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openldap: Privilege escalation via PID file manipulation", + "Description": "slapd in OpenLDAP 2.4.45 and earlier creates a PID file after dropping privileges to a non-root account, which might allow local users to kill arbitrary processes by leveraging access to this non-root account for PID file modification before a root script executes a \"kill `cat /pathname`\" command, as demonstrated by openldap-initscript.", + "Severity": "LOW", + "CweIDs": [ + "CWE-665" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 1.9, + "V3Score": 4.7 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.4 + } + }, + "References": [ + "http://www.openldap.org/its/index.cgi?findid=8703", + "https://access.redhat.com/security/cve/CVE-2017-14159", + "https://nvd.nist.gov/vuln/detail/CVE-2017-14159", + "https://www.cve.org/CVERecord?id=CVE-2017-14159", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2017-09-05T18:29:00Z", + "LastModifiedDate": "2022-06-13T19:18:00Z" + }, + { + "VulnerabilityID": "CVE-2017-17740", + "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1", + "PkgName": "libldap-2.4-2", + "InstalledVersion": "2.4.57+dfsg-3+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-17740", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openldap: contrib/slapd-modules/nops/nops.c attempts to free stack buffer allowing remote attackers to cause a denial of service", + "Description": "contrib/slapd-modules/nops/nops.c in OpenLDAP through 2.4.45, when both the nops module and the memberof overlay are enabled, attempts to free a buffer that was allocated on the stack, which allows remote attackers to cause a denial of service (slapd crash) via a member MODDN operation.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00053.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00058.html", + "http://www.openldap.org/its/index.cgi/Incoming?id=8759", + "https://access.redhat.com/security/cve/CVE-2017-17740", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://nvd.nist.gov/vuln/detail/CVE-2017-17740", + "https://www.cve.org/CVERecord?id=CVE-2017-17740", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2017-12-18T06:29:00Z", + "LastModifiedDate": "2022-06-13T19:10:00Z" + }, + { + "VulnerabilityID": "CVE-2020-15719", + "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1", + "PkgName": "libldap-2.4-2", + "InstalledVersion": "2.4.57+dfsg-3+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-15719", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openldap: Certificate validation incorrectly matches name against CN-ID", + "Description": "libldap in certain third-party OpenLDAP packages has a certificate-validation flaw when the third-party package is asserting RFC6125 support. It considers CN even when there is a non-matching subjectAltName (SAN). This is fixed in, for example, openldap-2.4.46-10.el8 in Red Hat Enterprise Linux.", + "Severity": "LOW", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:H/Au:N/C:P/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N", + "V2Score": 4, + "V3Score": 4.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N", + "V3Score": 4.2 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00033.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00059.html", + "https://access.redhat.com/errata/RHBA-2019:3674", + "https://access.redhat.com/security/cve/CVE-2020-15719", + "https://bugs.openldap.org/show_bug.cgi?id=9266", + "https://bugzilla.redhat.com/show_bug.cgi?id=1740070", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://nvd.nist.gov/vuln/detail/CVE-2020-15719", + "https://www.cve.org/CVERecord?id=CVE-2020-15719", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2020-07-14T14:15:00Z", + "LastModifiedDate": "2022-05-12T15:01:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "libmount1@2.36.1-8+deb11u1", + "PkgName": "libmount1", + "InstalledVersion": "2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29458", + "PkgID": "libncurses6@6.2+20201114-2", + "PkgName": "libncurses6", + "InstalledVersion": "6.2+20201114-2", + "FixedVersion": "6.2+20201114-2+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29458", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "ncurses: segfaulting OOB read", + "Description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:H", + "V2Score": 5.8, + "V3Score": 7.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458" + ], + "PublishedDate": "2022-04-18T21:15:00Z", + "LastModifiedDate": "2022-11-08T19:46:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29491", + "PkgID": "libncurses6@6.2+20201114-2", + "PkgName": "libncurses6", + "InstalledVersion": "6.2+20201114-2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29491", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Local users can trigger security-relevant memory corruption via malformed data", + "Description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4" + ], + "PublishedDate": "2023-04-14T01:15:00Z", + "LastModifiedDate": "2023-05-17T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29458", + "PkgID": "libncursesw6@6.2+20201114-2", + "PkgName": "libncursesw6", + "InstalledVersion": "6.2+20201114-2", + "FixedVersion": "6.2+20201114-2+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29458", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "ncurses: segfaulting OOB read", + "Description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:H", + "V2Score": 5.8, + "V3Score": 7.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458" + ], + "PublishedDate": "2022-04-18T21:15:00Z", + "LastModifiedDate": "2022-11-08T19:46:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29491", + "PkgID": "libncursesw6@6.2+20201114-2", + "PkgName": "libncursesw6", + "InstalledVersion": "6.2+20201114-2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29491", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Local users can trigger security-relevant memory corruption via malformed data", + "Description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4" + ], + "PublishedDate": "2023-04-14T01:15:00Z", + "LastModifiedDate": "2023-05-17T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1586", + "PkgID": "libpcre2-8-0@10.36-2", + "PkgName": "libpcre2-8-0", + "InstalledVersion": "10.36-2", + "FixedVersion": "10.36-2+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1586", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre2: Out-of-bounds read in compile_xclass_matchingpath in pcre2_jit_compile.c", + "Description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:5809", + "https://access.redhat.com/security/cve/CVE-2022-1586", + "https://bugzilla.redhat.com/2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1586", + "https://errata.almalinux.org/8/ALSA-2022-5809.html", + "https://errata.rockylinux.org/RLSA-2022:5809", + "https://github.com/PCRE2Project/pcre2/commit/50a51cb7e67268e6ad417eb07c9de9bfea5cc55a,", + "https://github.com/PCRE2Project/pcre2/commit/d4fa336fbcc388f89095b184ba6d99422cfc676c", + "https://linux.oracle.com/cve/CVE-2022-1586.html", + "https://linux.oracle.com/errata/ELSA-2022-5809.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1586", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1586" + ], + "PublishedDate": "2022-05-16T21:15:00Z", + "LastModifiedDate": "2023-03-16T05:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1587", + "PkgID": "libpcre2-8-0@10.36-2", + "PkgName": "libpcre2-8-0", + "InstalledVersion": "10.36-2", + "FixedVersion": "10.36-2+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1587", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre2: Out-of-bounds read in get_recurse_data_length in pcre2_jit_compile.c", + "Description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-1587", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077983,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1587", + "https://github.com/PCRE2Project/pcre2/commit/03654e751e7f0700693526b67dfcadda6b42c9d0", + "https://linux.oracle.com/cve/CVE-2022-1587.html", + "https://linux.oracle.com/errata/ELSA-2022-5251.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1587", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1587" + ], + "PublishedDate": "2022-05-16T21:15:00Z", + "LastModifiedDate": "2023-03-16T05:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-11164", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11164", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c", + "Description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 7.8, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://openwall.com/lists/oss-security/2017/07/11/3", + "http://www.openwall.com/lists/oss-security/2023/04/11/1", + "http://www.openwall.com/lists/oss-security/2023/04/12/1", + "http://www.securityfocus.com/bid/99575", + "https://access.redhat.com/security/cve/CVE-2017-11164", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + "https://www.cve.org/CVERecord?id=CVE-2017-11164" + ], + "PublishedDate": "2017-07-11T03:29:00Z", + "LastModifiedDate": "2023-04-12T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-16231", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-16231", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service", + "Description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + "http://seclists.org/fulldisclosure/2018/Dec/33", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101688", + "https://access.redhat.com/security/cve/CVE-2017-16231", + "https://bugs.exim.org/show_bug.cgi?id=2047", + "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + "https://www.cve.org/CVERecord?id=CVE-2017-16231" + ], + "PublishedDate": "2019-03-21T15:59:00Z", + "LastModifiedDate": "2019-04-02T13:55:00Z" + }, + { + "VulnerabilityID": "CVE-2017-7245", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7245", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7245", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7245" + ], + "PublishedDate": "2017-03-23T21:59:00Z", + "LastModifiedDate": "2018-08-17T10:29:00Z" + }, + { + "VulnerabilityID": "CVE-2017-7246", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7246", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7246", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7246" + ], + "PublishedDate": "2017-03-23T21:59:00Z", + "LastModifiedDate": "2018-08-17T10:29:00Z" + }, + { + "VulnerabilityID": "CVE-2019-20838", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20838", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: Buffer over-read in JIT when UTF is disabled and \\X or \\R has fixed quantifier greater than 1", + "Description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://access.redhat.com/security/cve/CVE-2019-20838", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2019-20838.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2019-20838", + "https://www.pcre.org/original/changelog.txt" + ], + "PublishedDate": "2020-06-15T17:15:00Z", + "LastModifiedDate": "2021-09-22T14:22:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36084", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36084", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: use-after-free in __cil_verify_classperms()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36084", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + "https://linux.oracle.com/cve/CVE-2021-36084.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36084" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:16:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36085", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36085", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: use-after-free in __cil_verify_classperms()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36085", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + "https://linux.oracle.com/cve/CVE-2021-36085.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36085" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:26:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36086", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36086", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free in cil_reset_classpermission()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36086", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + "https://linux.oracle.com/cve/CVE-2021-36086.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36086" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36087", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36087", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: heap-based buffer overflow in ebitmap_match_any()", + "Description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36087", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + "https://linux.oracle.com/cve/CVE-2021-36087.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36087" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T14:05:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "libsmartcols1@2.36.1-8+deb11u1", + "PkgName": "libsmartcols1", + "InstalledVersion": "2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4450", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4450", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "double free after calling PEM_read_bio_ex", + "Description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0215", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0215", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free following BIO_new_NDEF", + "Description": "The public API function BIO_new_NDEF is a helper function used for streaming\nASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\nSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\nend user applications.\n\nThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\nBIO onto the front of it to form a BIO chain, and then returns the new head of\nthe BIO chain to the caller. Under certain conditions, for example if a CMS\nrecipient public key is invalid, the new filter BIO is freed and the function\nreturns a NULL result indicating a failure. However, in this case, the BIO chain\nis not properly cleaned up and the BIO passed by the caller still retains\ninternal pointers to the previously freed filter BIO. If the caller then goes on\nto call BIO_pop() on the BIO then a use-after-free will occur. This will most\nlikely result in a crash.\n\n\n\nThis scenario occurs directly in the internal function B64_write_ASN1() which\nmay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\nthe BIO. This internal function is in turn called by the public API functions\nPEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\nSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\n\nOther public API functions that may be impacted by this include\ni2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\ni2d_PKCS7_bio_stream.\n\nThe OpenSSL cms and smime command line applications are similarly affected.\n\n\n\n", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0286", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0286", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "X.400 address type confusion in X.509 GeneralName", + "Description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-843" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-03-27T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0464", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0464", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "Description": "A security vulnerability has been identified in all supported versions\n\nof OpenSSL related to the verification of X.509 certificate chains\nthat include policy constraints. Attackers may be able to exploit this\nvulnerability by creating a malicious certificate chain that triggers\nexponential use of computational resources, leading to a denial-of-service\n(DoS) attack on affected systems.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://linux.oracle.com/cve/CVE-2023-0464.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt" + ], + "PublishedDate": "2023-03-22T17:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2650", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://linux.oracle.com/cve/CVE-2023-2650.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://ubuntu.com/security/notices/USN-6188-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2097", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2097", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "AES OCB fails to encrypt some bytes", + "Description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of \"in place\" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt" + ], + "PublishedDate": "2022-07-05T11:15:00Z", + "LastModifiedDate": "2023-04-20T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4304", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4304", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing attack in RSA Decryption implementation", + "Description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "Severity": "MEDIUM", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T17:13:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0465", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0465", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Invalid certificate policies in leaf certificates are silently ignored", + "Description": "Applications that use a non-default option when verifying certificates may be\nvulnerable to an attack from a malicious CA to circumvent certain checks.\n\nInvalid certificate policies in leaf certificates are silently ignored by\nOpenSSL and other certificate policy checks are skipped for that certificate.\nA malicious CA could use this to deliberately assert invalid certificate policies\nin order to circumvent policy checking on the certificate altogether.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://linux.oracle.com/cve/CVE-2023-0465.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0466", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0466", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Certificate policy check not enabled", + "Description": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://linux.oracle.com/cve/CVE-2023-0466.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2007-6755", + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dual_EC_DRBG: weak pseudo random number generator", + "Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + } + }, + "References": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html" + ], + "PublishedDate": "2013-10-11T22:55:00Z", + "LastModifiedDate": "2022-11-01T14:44:00Z" + }, + { + "VulnerabilityID": "CVE-2010-0928", + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: RSA authentication weakness", + "Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-310" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:N/A:N", + "V2Score": 4 + } + }, + "References": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928" + ], + "PublishedDate": "2010-03-05T19:30:00Z", + "LastModifiedDate": "2017-08-17T01:32:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3821", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in format_timespan() function", + "Description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821" + ], + "PublishedDate": "2022-11-08T22:15:00Z", + "LastModifiedDate": "2023-05-03T12:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4415", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "Description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3" + ], + "PublishedDate": "2023-01-11T15:15:00Z", + "LastModifiedDate": "2023-02-02T16:19:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4392", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + } + }, + "References": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392" + ], + "PublishedDate": "2013-10-28T22:55:00Z", + "LastModifiedDate": "2022-01-31T17:49:00Z" + }, + { + "VulnerabilityID": "CVE-2020-13529", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "Description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "Severity": "LOW", + "CweIDs": [ + "CWE-290" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V2Score": 2.9, + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529" + ], + "PublishedDate": "2021-05-10T16:15:00Z", + "LastModifiedDate": "2022-10-07T02:59:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31437", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31437", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can modify a seale ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify a sealed log file such that, in some views, not all existing and sealed log messages are displayed. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:16:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31438", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31438", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can truncate a sea ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can truncate a sealed log file and then resume log sealing such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:16:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31439", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31439", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can modify the con ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify the contents of past events in a sealed log file and then adjust the file such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-46848", + "PkgID": "libtasn1-6@4.16.0-2", + "PkgName": "libtasn1-6", + "InstalledVersion": "4.16.0-2", + "FixedVersion": "4.16.0-2+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-46848", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libtasn1: Out-of-bound access in ETYPE_OK", + "Description": "GNU Libtasn1 before 4.19.0 has an ETYPE_OK off-by-one array size check that affects asn1_encode_simple_der.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0343", + "https://access.redhat.com/security/cve/CVE-2021-46848", + "https://bugs.gentoo.org/866237", + "https://bugzilla.redhat.com/2140058", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + "https://errata.almalinux.org/9/ALSA-2023-0343.html", + "https://errata.rockylinux.org/RLSA-2023:0343", + "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + "https://gitlab.com/gnutls/libtasn1/-/issues/32", + "https://linux.oracle.com/cve/CVE-2021-46848.html", + "https://linux.oracle.com/errata/ELSA-2023-0343.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + "https://security.netapp.com/advisory/ntap-20221118-0006/", + "https://ubuntu.com/security/notices/USN-5707-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46848" + ], + "PublishedDate": "2022-10-24T14:15:00Z", + "LastModifiedDate": "2023-01-20T13:55:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29458", + "PkgID": "libtinfo6@6.2+20201114-2", + "PkgName": "libtinfo6", + "InstalledVersion": "6.2+20201114-2", + "FixedVersion": "6.2+20201114-2+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29458", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "ncurses: segfaulting OOB read", + "Description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:H", + "V2Score": 5.8, + "V3Score": 7.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458" + ], + "PublishedDate": "2022-04-18T21:15:00Z", + "LastModifiedDate": "2022-11-08T19:46:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29491", + "PkgID": "libtinfo6@6.2+20201114-2", + "PkgName": "libtinfo6", + "InstalledVersion": "6.2+20201114-2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29491", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Local users can trigger security-relevant memory corruption via malformed data", + "Description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4" + ], + "PublishedDate": "2023-04-14T01:15:00Z", + "LastModifiedDate": "2023-05-17T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3821", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in format_timespan() function", + "Description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821" + ], + "PublishedDate": "2022-11-08T22:15:00Z", + "LastModifiedDate": "2023-05-03T12:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4415", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "Description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3" + ], + "PublishedDate": "2023-01-11T15:15:00Z", + "LastModifiedDate": "2023-02-02T16:19:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4392", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + } + }, + "References": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392" + ], + "PublishedDate": "2013-10-28T22:55:00Z", + "LastModifiedDate": "2022-01-31T17:49:00Z" + }, + { + "VulnerabilityID": "CVE-2020-13529", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "Description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "Severity": "LOW", + "CweIDs": [ + "CWE-290" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V2Score": 2.9, + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529" + ], + "PublishedDate": "2021-05-10T16:15:00Z", + "LastModifiedDate": "2022-10-07T02:59:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31437", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31437", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can modify a seale ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify a sealed log file such that, in some views, not all existing and sealed log messages are displayed. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:16:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31438", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31438", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can truncate a sea ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can truncate a sealed log file and then resume log sealing such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:16:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31439", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31439", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can modify the con ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify the contents of past events in a sealed log file and then adjust the file such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "libuuid1@2.36.1-8+deb11u1", + "PkgName": "libuuid1", + "InstalledVersion": "2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4899", + "PkgID": "libzstd1@1.4.8+dfsg-2.1", + "PkgName": "libzstd1", + "InstalledVersion": "1.4.8+dfsg-2.1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4899", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in util.c", + "Description": "A vulnerability was found in zstd v1.4.10, where an attacker can supply empty string as an argument to the command line tool to cause buffer overrun.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-4899", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4899", + "https://github.com/facebook/zstd/issues/3200", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4899", + "https://www.cve.org/CVERecord?id=CVE-2022-4899" + ], + "PublishedDate": "2023-03-31T20:15:00Z", + "LastModifiedDate": "2023-04-07T01:19:00Z" + }, + { + "VulnerabilityID": "CVE-2007-5686", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-264" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N", + "V2Score": 4.9 + } + }, + "References": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "PublishedDate": "2007-10-28T17:08:00Z", + "LastModifiedDate": "2018-10-15T21:45:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4235", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "Severity": "LOW", + "CweIDs": [ + "CWE-367" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 3.3, + "V3Score": 4.7 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 3.7, + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235" + ], + "PublishedDate": "2019-12-03T15:15:00Z", + "LastModifiedDate": "2023-02-13T00:28:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19882", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.9, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882" + ], + "PublishedDate": "2019-12-18T16:15:00Z", + "LastModifiedDate": "2020-08-25T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29383", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Improper input validation in shadow-utils package utility chfn", + "Description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that \"cat /etc/passwd\" shows a rogue user account.", + "Severity": "LOW", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797" + ], + "PublishedDate": "2023-04-14T22:15:00Z", + "LastModifiedDate": "2023-04-24T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "mount@2.36.1-8+deb11u1", + "PkgName": "mount", + "InstalledVersion": "2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29458", + "PkgID": "ncurses-base@6.2+20201114-2", + "PkgName": "ncurses-base", + "InstalledVersion": "6.2+20201114-2", + "FixedVersion": "6.2+20201114-2+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29458", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "ncurses: segfaulting OOB read", + "Description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:H", + "V2Score": 5.8, + "V3Score": 7.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458" + ], + "PublishedDate": "2022-04-18T21:15:00Z", + "LastModifiedDate": "2022-11-08T19:46:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29491", + "PkgID": "ncurses-base@6.2+20201114-2", + "PkgName": "ncurses-base", + "InstalledVersion": "6.2+20201114-2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29491", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Local users can trigger security-relevant memory corruption via malformed data", + "Description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4" + ], + "PublishedDate": "2023-04-14T01:15:00Z", + "LastModifiedDate": "2023-05-17T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4450", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4450", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "double free after calling PEM_read_bio_ex", + "Description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0215", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0215", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free following BIO_new_NDEF", + "Description": "The public API function BIO_new_NDEF is a helper function used for streaming\nASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\nSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\nend user applications.\n\nThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\nBIO onto the front of it to form a BIO chain, and then returns the new head of\nthe BIO chain to the caller. Under certain conditions, for example if a CMS\nrecipient public key is invalid, the new filter BIO is freed and the function\nreturns a NULL result indicating a failure. However, in this case, the BIO chain\nis not properly cleaned up and the BIO passed by the caller still retains\ninternal pointers to the previously freed filter BIO. If the caller then goes on\nto call BIO_pop() on the BIO then a use-after-free will occur. This will most\nlikely result in a crash.\n\n\n\nThis scenario occurs directly in the internal function B64_write_ASN1() which\nmay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\nthe BIO. This internal function is in turn called by the public API functions\nPEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\nSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\n\nOther public API functions that may be impacted by this include\ni2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\ni2d_PKCS7_bio_stream.\n\nThe OpenSSL cms and smime command line applications are similarly affected.\n\n\n\n", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0286", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0286", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "X.400 address type confusion in X.509 GeneralName", + "Description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-843" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-03-27T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0464", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0464", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "Description": "A security vulnerability has been identified in all supported versions\n\nof OpenSSL related to the verification of X.509 certificate chains\nthat include policy constraints. Attackers may be able to exploit this\nvulnerability by creating a malicious certificate chain that triggers\nexponential use of computational resources, leading to a denial-of-service\n(DoS) attack on affected systems.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://linux.oracle.com/cve/CVE-2023-0464.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt" + ], + "PublishedDate": "2023-03-22T17:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2650", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://linux.oracle.com/cve/CVE-2023-2650.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://ubuntu.com/security/notices/USN-6188-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2097", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2097", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "AES OCB fails to encrypt some bytes", + "Description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of \"in place\" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt" + ], + "PublishedDate": "2022-07-05T11:15:00Z", + "LastModifiedDate": "2023-04-20T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4304", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4304", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing attack in RSA Decryption implementation", + "Description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "Severity": "MEDIUM", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T17:13:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0465", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0465", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Invalid certificate policies in leaf certificates are silently ignored", + "Description": "Applications that use a non-default option when verifying certificates may be\nvulnerable to an attack from a malicious CA to circumvent certain checks.\n\nInvalid certificate policies in leaf certificates are silently ignored by\nOpenSSL and other certificate policy checks are skipped for that certificate.\nA malicious CA could use this to deliberately assert invalid certificate policies\nin order to circumvent policy checking on the certificate altogether.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://linux.oracle.com/cve/CVE-2023-0465.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0466", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0466", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Certificate policy check not enabled", + "Description": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://linux.oracle.com/cve/CVE-2023-0466.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2007-6755", + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dual_EC_DRBG: weak pseudo random number generator", + "Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + } + }, + "References": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html" + ], + "PublishedDate": "2013-10-11T22:55:00Z", + "LastModifiedDate": "2022-11-01T14:44:00Z" + }, + { + "VulnerabilityID": "CVE-2010-0928", + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: RSA authentication weakness", + "Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-310" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:N/A:N", + "V2Score": 4 + } + }, + "References": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928" + ], + "PublishedDate": "2010-03-05T19:30:00Z", + "LastModifiedDate": "2017-08-17T01:32:00Z" + }, + { + "VulnerabilityID": "CVE-2007-5686", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-264" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N", + "V2Score": 4.9 + } + }, + "References": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "PublishedDate": "2007-10-28T17:08:00Z", + "LastModifiedDate": "2018-10-15T21:45:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4235", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "Severity": "LOW", + "CweIDs": [ + "CWE-367" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 3.3, + "V3Score": 4.7 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 3.7, + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235" + ], + "PublishedDate": "2019-12-03T15:15:00Z", + "LastModifiedDate": "2023-02-13T00:28:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19882", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.9, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882" + ], + "PublishedDate": "2019-12-18T16:15:00Z", + "LastModifiedDate": "2020-08-25T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29383", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Improper input validation in shadow-utils package utility chfn", + "Description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that \"cat /etc/passwd\" shows a rogue user account.", + "Severity": "LOW", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797" + ], + "PublishedDate": "2023-04-14T22:15:00Z", + "LastModifiedDate": "2023-04-24T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2020-16156", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-16156", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "perl-CPAN: Bypass of verification of signatures in CHECKSUMS files", + "Description": "CPAN 2.28 allows Signature Verification Bypass.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + "https://access.redhat.com/security/cve/CVE-2020-16156", + "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + "https://ubuntu.com/security/notices/USN-5689-1", + "https://ubuntu.com/security/notices/USN-5689-2", + "https://www.cve.org/CVERecord?id=CVE-2020-16156" + ], + "PublishedDate": "2021-12-13T18:15:00Z", + "LastModifiedDate": "2022-04-01T13:26:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31484", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31484", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "CPAN.pm before 2.35 does not verify TLS certificates when downloading ...", + "Description": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + "https://github.com/andk/cpanpm/pull/175", + "https://metacpan.org/dist/CPAN/changes", + "https://ubuntu.com/security/notices/USN-6112-1", + "https://ubuntu.com/security/notices/USN-6112-2", + "https://www.openwall.com/lists/oss-security/2023/04/18/14" + ], + "PublishedDate": "2023-04-29T00:15:00Z", + "LastModifiedDate": "2023-05-08T17:11:00Z" + }, + { + "VulnerabilityID": "CVE-2011-4116", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-4116", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "perl: File::Temp insecure temporary file handling", + "Description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N", + "V2Score": 1.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2011/11/04/2", + "http://www.openwall.com/lists/oss-security/2011/11/04/4", + "https://access.redhat.com/security/cve/CVE-2011-4116", + "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + "https://seclists.org/oss-sec/2011/q4/238", + "https://www.cve.org/CVERecord?id=CVE-2011-4116" + ], + "PublishedDate": "2020-01-31T18:15:00Z", + "LastModifiedDate": "2020-02-05T22:10:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31486", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31486", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTP::Tiny before 0.083, a Perl core module since 5.13.9 and available ...", + "Description": "HTTP::Tiny before 0.083, a Perl core module since 5.13.9 and available standalone on CPAN, has an insecure default TLS configuration where users must opt in to verify certificates.", + "Severity": "LOW", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://github.com/chansen/p5-http-tiny/pull/153", + "https://hackeriet.github.io/cpan-http-tiny-overview/", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + "https://www.openwall.com/lists/oss-security/2023/05/03/4", + "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/" + ], + "PublishedDate": "2023-04-29T00:15:00Z", + "LastModifiedDate": "2023-06-21T18:19:00Z" + }, + { + "VulnerabilityID": "CVE-2005-2541", + "PkgID": "tar@1.34+dfsg-1", + "PkgName": "tar", + "InstalledVersion": "1.34+dfsg-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2005-2541", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tar: does not properly warn the user when extracting setuid or setgid files", + "Description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V2Score": 10 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://marc.info/?l=bugtraq\u0026m=112327628230258\u0026w=2", + "https://access.redhat.com/security/cve/CVE-2005-2541", + "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + "https://www.cve.org/CVERecord?id=CVE-2005-2541" + ], + "PublishedDate": "2005-08-10T04:00:00Z", + "LastModifiedDate": "2021-06-18T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-48303", + "PkgID": "tar@1.34+dfsg-1", + "PkgName": "tar", + "InstalledVersion": "1.34+dfsg-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-48303", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "heap buffer overflow at from_header() in list.c via specially crafted checksum", + "Description": "GNU Tar through 1.34 has a one-byte out-of-bounds read that results in use of uninitialized memory for a conditional jump. Exploitation to change the flow of control has not been demonstrated. The issue occurs in from_header in list.c via a V7 archive in which mtime has approximately 11 whitespace characters.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0959", + "https://access.redhat.com/security/cve/CVE-2022-48303", + "https://bugzilla.redhat.com/2149722", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + "https://errata.almalinux.org/9/ALSA-2023-0959.html", + "https://errata.rockylinux.org/RLSA-2023:0959", + "https://linux.oracle.com/cve/CVE-2022-48303.html", + "https://linux.oracle.com/errata/ELSA-2023-0959.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + "https://savannah.gnu.org/bugs/?62387", + "https://savannah.gnu.org/patch/?10307", + "https://ubuntu.com/security/notices/USN-5900-1", + "https://ubuntu.com/security/notices/USN-5900-2", + "https://www.cve.org/CVERecord?id=CVE-2022-48303" + ], + "PublishedDate": "2023-01-30T04:15:00Z", + "LastModifiedDate": "2023-05-30T17:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "util-linux@2.36.1-8+deb11u1", + "PkgName": "util-linux", + "InstalledVersion": "2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + } + ] + }, + { + "Target": "opt/bitnami/common/bin/gosu", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2023-27561", + "PkgName": "github.com/opencontainers/runc", + "InstalledVersion": "v1.0.1", + "FixedVersion": "1.1.5", + "Layer": { + "Digest": "sha256:ec89a260860a4668db9e2b16244d8a35ea30fff967d8e67a1aba9721cd59d7e3", + "DiffID": "sha256:b6385a973d7b4476906343069cd259795d718475350cd9c32e74b3d3a09eee4b" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27561", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "volume mount race condition (regression of CVE-2019-19921)", + "Description": "runc through 1.1.4 has Incorrect Access Control leading to Escalation of Privileges, related to libcontainer/rootfs_linux.go. To exploit this, an attacker must be able to spawn two containers with custom volume-mount configurations, and be able to run custom images. NOTE: this issue exists because of a CVE-2019-19921 regression.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-706" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27561", + "https://gist.github.com/LiveOverflow/c937820b688922eb127fb760ce06dab9", + "https://github.com/advisories/GHSA-vpvm-3wq2-2wvm", + "https://github.com/opencontainers/runc/issues/2197#issuecomment-1437617334", + "https://github.com/opencontainers/runc/issues/3751", + "https://github.com/opencontainers/runc/pull/3785", + "https://github.com/opencontainers/runc/releases/tag/v1.1.5", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DHGVGGMKGZSJ7YO67TGGPFEHBYMS63VF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FYVE3GB4OG3BNT5DLQHYO4M5SXX33AQ5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I6BF24VCZRFTYBTT3T7HDZUOTKOTNPLZ/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27561", + "https://ubuntu.com/security/notices/USN-6088-1", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27561" + ], + "PublishedDate": "2023-03-03T19:15:00Z", + "LastModifiedDate": "2023-04-21T04:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-43784", + "PkgName": "github.com/opencontainers/runc", + "InstalledVersion": "v1.0.1", + "FixedVersion": "1.1.0", + "Layer": { + "Digest": "sha256:ec89a260860a4668db9e2b16244d8a35ea30fff967d8e67a1aba9721cd59d7e3", + "DiffID": "sha256:b6385a973d7b4476906343069cd259795d718475350cd9c32e74b3d3a09eee4b" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-43784", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "integer overflow in netlink bytemsg length field allows attacker to override netlink-based container configuration", + "Description": "runc is a CLI tool for spawning and running containers on Linux according to the OCI specification. In runc, netlink is used internally as a serialization system for specifying the relevant container configuration to the `C` portion of the code (responsible for the based namespace setup of containers). In all versions of runc prior to 1.0.3, the encoder did not handle the possibility of an integer overflow in the 16-bit length field for the byte array attribute type, meaning that a large enough malicious byte array attribute could result in the length overflowing and the attribute contents being parsed as netlink messages for container configuration. This vulnerability requires the attacker to have some control over the configuration of the container and would allow the attacker to bypass the namespace restrictions of the container by simply adding their own netlink payload which disables all namespaces. The main users impacted are those who allow untrusted images with untrusted configurations to run on their machines (such as with shared cloud infrastructure). runc version 1.0.3 contains a fix for this bug. As a workaround, one may try disallowing untrusted namespace paths from your container. It should be noted that untrusted namespace paths would allow the attacker to disable namespace protections entirely even in the absence of this bug.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:L/I:L/A:L", + "V3Score": 6 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V2Score": 6, + "V3Score": 5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-43784", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=2241", + "https://github.com/advisories/GHSA-v95c-p5hm-xq8f", + "https://github.com/opencontainers/runc/commit/9c444070ec7bb83995dbc0185da68284da71c554", + "https://github.com/opencontainers/runc/commit/d72d057ba794164c3cce9451a00b72a78b25e1ae", + "https://github.com/opencontainers/runc/commit/dde509df4e28cec33b3c99c6cda3d4fd5beafc77", + "https://github.com/opencontainers/runc/commit/f50369af4b571e358f20b139eea52d612eb55eed", + "https://github.com/opencontainers/runc/security/advisories/GHSA-v95c-p5hm-xq8f", + "https://lists.debian.org/debian-lts-announce/2021/12/msg00005.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43784", + "https://pkg.go.dev/vuln/GO-2022-0274", + "https://www.cve.org/CVERecord?id=CVE-2021-43784" + ], + "PublishedDate": "2021-12-06T18:15:00Z", + "LastModifiedDate": "2021-12-08T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29162", + "PkgName": "github.com/opencontainers/runc", + "InstalledVersion": "v1.0.1", + "FixedVersion": "1.1.2", + "Layer": { + "Digest": "sha256:ec89a260860a4668db9e2b16244d8a35ea30fff967d8e67a1aba9721cd59d7e3", + "DiffID": "sha256:b6385a973d7b4476906343069cd259795d718475350cd9c32e74b3d3a09eee4b" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29162", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "runc: incorrect handling of inheritable capabilities", + "Description": "runc is a CLI tool for spawning and running containers on Linux according to the OCI specification. A bug was found in runc prior to version 1.1.2 where `runc exec --cap` created processes with non-empty inheritable Linux process capabilities, creating an atypical Linux environment and enabling programs with inheritable file capabilities to elevate those capabilities to the permitted set during execve(2). This bug did not affect the container security sandbox as the inheritable set never contained more capabilities than were included in the container's bounding set. This bug has been fixed in runc 1.1.2. This fix changes `runc exec --cap` behavior such that the additional capabilities granted to the process being executed (as specified via `--cap` arguments) do not include inheritable capabilities. In addition, `runc spec` is changed to not set any inheritable capabilities in the created example OCI spec (`config.json`) file.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-276" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 5.9 + }, + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 4.6, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 5.6 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8090", + "https://access.redhat.com/security/cve/CVE-2022-29162", + "https://bugzilla.redhat.com/2086398", + "https://bugzilla.redhat.com/show_bug.cgi?id=2086398", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29162", + "https://errata.almalinux.org/9/ALSA-2022-8090.html", + "https://errata.rockylinux.org/RLSA-2022:8090", + "https://github.com/advisories/GHSA-f3fp-gc8g-vw66", + "https://github.com/opencontainers/runc/commit/98fe566c527479195ce3c8167136d2a555fe6b65", + "https://github.com/opencontainers/runc/commit/d04de3a9b72d7a2455c1885fc75eb36d02cd17b5", + "https://github.com/opencontainers/runc/releases/tag/v1.1.2", + "https://github.com/opencontainers/runc/security/advisories/GHSA-f3fp-gc8g-vw66", + "https://linux.oracle.com/cve/CVE-2022-29162.html", + "https://linux.oracle.com/errata/ELSA-2022-8090.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AVPZBV7ISA7QKRPTC7ZXWKMIQI2HZEBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/D77CKD3AXPMU4PMQIQI5Q74SI4JATNND/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GPQU4YC4AAY54JDXGDQHJEYKSXXG5T2Y/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29162", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2022-29162", + "https://www.openwall.com/lists/oss-security/2022/05/12/1" + ], + "PublishedDate": "2022-05-17T21:15:00Z", + "LastModifiedDate": "2023-03-27T18:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28642", + "PkgName": "github.com/opencontainers/runc", + "InstalledVersion": "v1.0.1", + "FixedVersion": "1.1.5", + "Layer": { + "Digest": "sha256:ec89a260860a4668db9e2b16244d8a35ea30fff967d8e67a1aba9721cd59d7e3", + "DiffID": "sha256:b6385a973d7b4476906343069cd259795d718475350cd9c32e74b3d3a09eee4b" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28642", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "AppArmor can be bypassed when `/proc` inside the container is symlinked with a specific mount configuration", + "Description": "runc is a CLI tool for spawning and running containers according to the OCI specification. It was found that AppArmor can be bypassed when `/proc` inside the container is symlinked with a specific mount configuration. This issue has been fixed in runc version 1.1.5, by prohibiting symlinked `/proc`. See PR #3785 for details. users are advised to upgrade. Users unable to upgrade should avoid using an untrusted container image.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L", + "V3Score": 6.1 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L", + "V3Score": 6.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28642", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28642", + "https://github.com/advisories/GHSA-g2j6-57v7-gm8c", + "https://github.com/opencontainers/runc/pull/3785", + "https://github.com/opencontainers/runc/security/advisories/GHSA-g2j6-57v7-gm8c", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28642", + "https://ubuntu.com/security/notices/USN-6088-1", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2023-28642" + ], + "PublishedDate": "2023-03-29T19:15:00Z", + "LastModifiedDate": "2023-04-06T17:45:00Z" + }, + { + "VulnerabilityID": "CVE-2023-25809", + "PkgName": "github.com/opencontainers/runc", + "InstalledVersion": "v1.0.1", + "FixedVersion": "1.1.5", + "Layer": { + "Digest": "sha256:ec89a260860a4668db9e2b16244d8a35ea30fff967d8e67a1aba9721cd59d7e3", + "DiffID": "sha256:b6385a973d7b4476906343069cd259795d718475350cd9c32e74b3d3a09eee4b" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-25809", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "Rootless runc makes `/sys/fs/cgroup` writable", + "Description": "runc is a CLI tool for spawning and running containers according to the OCI specification. In affected versions it was found that rootless runc makes `/sys/fs/cgroup` writable in following conditons: 1. when runc is executed inside the user namespace, and the `config.json` does not specify the cgroup namespace to be unshared (e.g.., `(docker|podman|nerdctl) run --cgroupns=host`, with Rootless Docker/Podman/nerdctl) or 2. when runc is executed outside the user namespace, and `/sys` is mounted with `rbind, ro` (e.g., `runc spec --rootless`; this condition is very rare). A container may gain the write access to user-owned cgroup hierarchy `/sys/fs/cgroup/user.slice/...` on the host . Other users's cgroup hierarchies are not affected. Users are advised to upgrade to version 1.1.5. Users unable to upgrade may unshare the cgroup namespace (`(docker|podman|nerdctl) run --cgroupns=private)`. This is the default behavior of Docker/Podman/nerdctl on cgroup v2 hosts. or add `/sys/fs/cgroup` to `maskedPaths`.", + "Severity": "LOW", + "CweIDs": [ + "CWE-281" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:N/I:N/A:L", + "V3Score": 2.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:L", + "V3Score": 6.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:N/I:N/A:L", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-25809", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-25809", + "https://github.com/advisories/GHSA-m8cg-xc2p-r3fc", + "https://github.com/opencontainers/runc/commit/0d62b950e60f6980b54fe3bafd9a9c608dc1df17", + "https://github.com/opencontainers/runc/commit/0e6b818a2b0d24fdb6697614e5c5f115bbe8e3a5 (v1.1.5)", + "https://github.com/opencontainers/runc/security/advisories/GHSA-m8cg-xc2p-r3fc", + "https://nvd.nist.gov/vuln/detail/CVE-2023-25809", + "https://ubuntu.com/security/notices/USN-6088-1", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2023-25809" + ], + "PublishedDate": "2023-03-29T19:15:00Z", + "LastModifiedDate": "2023-04-06T17:41:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29526", + "PkgName": "golang.org/x/sys", + "InstalledVersion": "v0.0.0-20210817142637-7d9622a276b7", + "FixedVersion": "0.0.0-20220412211240-33da011f77ad", + "Layer": { + "Digest": "sha256:ec89a260860a4668db9e2b16244d8a35ea30fff967d8e67a1aba9721cd59d7e3", + "DiffID": "sha256:b6385a973d7b4476906343069cd259795d718475350cd9c32e74b3d3a09eee4b" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29526", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "faccessat checks wrong group", + "Description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526" + ], + "PublishedDate": "2022-06-23T17:15:00Z", + "LastModifiedDate": "2022-08-19T12:50:00Z" + } + ] + }, + { + "Target": "opt/bitnami/common/bin/wait-for-port", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-29526", + "PkgName": "golang.org/x/sys", + "InstalledVersion": "v0.0.0-20210510120138-977fb7262007", + "FixedVersion": "0.0.0-20220412211240-33da011f77ad", + "Layer": { + "Digest": "sha256:d8b78e5e3b5054cee102cd920ee2d3c6a900c2e1f14a3dafe2801065777eae61", + "DiffID": "sha256:bd7dc3170a25bb44c548244e42739d0e4b124394c2584b5e703c0482d8d8236e" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29526", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "faccessat checks wrong group", + "Description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526" + ], + "PublishedDate": "2022-06-23T17:15:00Z", + "LastModifiedDate": "2022-08-19T12:50:00Z" + } + ] + }, + { + "Target": "opt/bitnami/minio-client/bin/mc", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "GHSA-rm8v-mxj3-5rmq", + "PkgName": "github.com/lestrrat-go/jwx", + "InstalledVersion": "v1.2.19", + "FixedVersion": "1.2.26", + "Layer": { + "Digest": "sha256:a597ae4b5d8c50dd406565561dfea4d5f454d043bfd715df2a4ac838e23fd859", + "DiffID": "sha256:2f7692341c221f488ba9c9c5091bb7206957f9e5afed2f24375943ee8f1a90c5" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://github.com/advisories/GHSA-rm8v-mxj3-5rmq", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "github.com/lestrrat-go/jwx vulnerable to Potential Padding Oracle Attack", + "Description": "AES-CBC decryption is vulnerable to a timing attack which may permit an attacker to recover the plaintext of JWE data.", + "Severity": "MEDIUM", + "References": [ + "https://github.com/advisories/GHSA-rm8v-mxj3-5rmq", + "https://github.com/lestrrat-go/jwx/blob/796b2a9101cf7e7cb66455e4d97f3c158ee10904/jwe/internal/aescbc/aescbc.go#L33-L66", + "https://github.com/lestrrat-go/jwx/blob/8840ffd4afc5839f591ff0e9ba9034af52b1643e/jwe/internal/aescbc/aescbc.go#L210-L213", + "https://github.com/lestrrat-go/jwx/commit/6c41e3822485fc7e11dd70b4b0524b075d66b103", + "https://github.com/lestrrat-go/jwx/commit/d9ddbc8e5009cfdd8c28413390b67afa7f576dd6", + "https://github.com/lestrrat-go/jwx/security/advisories/GHSA-rm8v-mxj3-5rmq" + ] + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:a597ae4b5d8c50dd406565561dfea4d5f454d043bfd715df2a4ac838e23fd859", + "DiffID": "sha256:2f7692341c221f488ba9c9c5091bb7206957f9e5afed2f24375943ee8f1a90c5" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41721", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.1.1-0.20221104162952-702349b0e862", + "Layer": { + "Digest": "sha256:a597ae4b5d8c50dd406565561dfea4d5f454d043bfd715df2a4ac838e23fd859", + "DiffID": "sha256:2f7692341c221f488ba9c9c5091bb7206957f9e5afed2f24375943ee8f1a90c5" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41721", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "request smuggling", + "Description": "A request smuggling attack is possible when using MaxBytesHandler. When using MaxBytesHandler, the body of an HTTP request is not fully consumed. When the server attempts to read HTTP2 frames from the connection, it will instead be reading the body of the HTTP request, which could be attacker-manipulated to represent arbitrary HTTP2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-444" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41721", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41721", + "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + "https://go.dev/cl/447396", + "https://go.dev/issue/56352", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + "https://pkg.go.dev/vuln/GO-2023-1495", + "https://www.cve.org/CVERecord?id=CVE-2022-41721" + ], + "PublishedDate": "2023-01-13T23:15:00Z", + "LastModifiedDate": "2023-01-24T17:25:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:a597ae4b5d8c50dd406565561dfea4d5f454d043bfd715df2a4ac838e23fd859", + "DiffID": "sha256:2f7692341c221f488ba9c9c5091bb7206957f9e5afed2f24375943ee8f1a90c5" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:a597ae4b5d8c50dd406565561dfea4d5f454d043bfd715df2a4ac838e23fd859", + "DiffID": "sha256:2f7692341c221f488ba9c9c5091bb7206957f9e5afed2f24375943ee8f1a90c5" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.7", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:a597ae4b5d8c50dd406565561dfea4d5f454d043bfd715df2a4ac838e23fd859", + "DiffID": "sha256:2f7692341c221f488ba9c9c5091bb7206957f9e5afed2f24375943ee8f1a90c5" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + } + ] + }, + { + "Target": "opt/bitnami/minio/bin/minio", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-2835", + "PkgName": "github.com/coredns/coredns", + "InstalledVersion": "v1.9.3", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2835", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "coreDNS: DNS Redirection of Internal Services", + "Description": "A flaw was found in coreDNS. This flaw allows a malicious user to reroute internal calls to some internal services that were accessed by the FQDN in a format of \u003cservice\u003e.\u003cnamespace\u003e.svc.", + "Severity": "MEDIUM", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 4.4 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 4.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L", + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-2835", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118542", + "https://github.com/advisories/GHSA-ch7v-37xg-75ph", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2835", + "https://www.cve.org/CVERecord?id=CVE-2022-2835" + ], + "PublishedDate": "2023-03-03T16:15:00Z", + "LastModifiedDate": "2023-03-14T15:47:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2837", + "PkgName": "github.com/coredns/coredns", + "InstalledVersion": "v1.9.3", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2837", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "DNS Redirection of Top-Level Domains", + "Description": "A flaw was found in coreDNS. This flaw allows a malicious user to redirect traffic intended for external top-level domains (TLD) to a pod they control by creating projects and namespaces that match the TLD.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-601" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", + "V3Score": 6.1 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 4.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-2837", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118543", + "https://github.com/advisories/GHSA-h828-v5pv-33qx", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2837", + "https://www.cve.org/CVERecord?id=CVE-2022-2837" + ], + "PublishedDate": "2023-03-03T16:15:00Z", + "LastModifiedDate": "2023-03-14T15:32:00Z" + }, + { + "VulnerabilityID": "GHSA-rm8v-mxj3-5rmq", + "PkgName": "github.com/lestrrat-go/jwx", + "InstalledVersion": "v1.2.19", + "FixedVersion": "1.2.26", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://github.com/advisories/GHSA-rm8v-mxj3-5rmq", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "github.com/lestrrat-go/jwx vulnerable to Potential Padding Oracle Attack", + "Description": "AES-CBC decryption is vulnerable to a timing attack which may permit an attacker to recover the plaintext of JWE data.", + "Severity": "MEDIUM", + "References": [ + "https://github.com/advisories/GHSA-rm8v-mxj3-5rmq", + "https://github.com/lestrrat-go/jwx/blob/796b2a9101cf7e7cb66455e4d97f3c158ee10904/jwe/internal/aescbc/aescbc.go#L33-L66", + "https://github.com/lestrrat-go/jwx/blob/8840ffd4afc5839f591ff0e9ba9034af52b1643e/jwe/internal/aescbc/aescbc.go#L210-L213", + "https://github.com/lestrrat-go/jwx/commit/6c41e3822485fc7e11dd70b4b0524b075d66b103", + "https://github.com/lestrrat-go/jwx/commit/d9ddbc8e5009cfdd8c28413390b67afa7f576dd6", + "https://github.com/lestrrat-go/jwx/security/advisories/GHSA-rm8v-mxj3-5rmq" + ] + }, + { + "VulnerabilityID": "CVE-2023-33955", + "PkgName": "github.com/minio/console", + "InstalledVersion": "v0.20.0", + "FixedVersion": "0.28.0", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-33955", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "Minio console object names with RIGHT-TO-LEFT OVERRIDE unicode character can be exploited", + "Description": "Minio Console is the UI for MinIO Object Storage. Unicode RIGHT-TO-LEFT OVERRIDE characters can be used to mask the original filename. This issue has been patched in version 0.28.0.\n\n", + "Severity": "MEDIUM", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 4.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/advisories/GHSA-jv3f-7m33-qp65", + "https://github.com/minio/console/commit/17e791afb90c9ad27c65f63c6be14f2f6a3a9d60", + "https://github.com/minio/console/releases/tag/v0.28.0", + "https://github.com/minio/console/security/advisories/GHSA-jv3f-7m33-qp65", + "https://nvd.nist.gov/vuln/detail/CVE-2023-33955" + ], + "PublishedDate": "2023-05-30T07:15:00Z", + "LastModifiedDate": "2023-06-05T16:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41721", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.1.1-0.20221104162952-702349b0e862", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41721", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "request smuggling", + "Description": "A request smuggling attack is possible when using MaxBytesHandler. When using MaxBytesHandler, the body of an HTTP request is not fully consumed. When the server attempts to read HTTP2 frames from the connection, it will instead be reading the body of the HTTP request, which could be attacker-manipulated to represent arbitrary HTTP2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-444" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41721", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41721", + "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + "https://go.dev/cl/447396", + "https://go.dev/issue/56352", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + "https://pkg.go.dev/vuln/GO-2023-1495", + "https://www.cve.org/CVERecord?id=CVE-2022-41721" + ], + "PublishedDate": "2023-01-13T23:15:00Z", + "LastModifiedDate": "2023-01-24T17:25:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.7", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + } + ] + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "Deployment", + "Name": "securecodebox-operator-minio", + "Results": [ + { + "Target": "Deployment/securecodebox-operator-minio", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 131, + "Failures": 10, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 250, + "EndLine": 313, + "Code": { + "Lines": [ + { + "Number": 250, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 251, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 254, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 255, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 256, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 257, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 258, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 259, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 250, + "EndLine": 313, + "Code": { + "Lines": [ + { + "Number": 250, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 251, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 254, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 255, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 256, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 257, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 258, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 259, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 250, + "EndLine": 313, + "Code": { + "Lines": [ + { + "Number": 250, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 251, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 254, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 255, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 256, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 257, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 258, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 259, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 250, + "EndLine": 313, + "Code": { + "Lines": [ + { + "Number": 250, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 251, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 254, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 255, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 256, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 257, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 258, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 259, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV015", + "AVDID": "AVD-KSV-0015", + "Title": "CPU requests not specified", + "Description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'resources.requests.cpu'", + "Namespace": "builtin.kubernetes.KSV015", + "Query": "data.builtin.kubernetes.KSV015.deny", + "Resolution": "Set 'containers[].resources.requests.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv015", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 250, + "EndLine": 313, + "Code": { + "Lines": [ + { + "Number": 250, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 251, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 254, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 255, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 256, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 257, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 258, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 259, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 250, + "EndLine": 313, + "Code": { + "Lines": [ + { + "Number": 250, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 251, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 254, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 255, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 256, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 257, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 258, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 259, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 250, + "EndLine": 313, + "Code": { + "Lines": [ + { + "Number": 250, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 251, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 254, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 255, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 256, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 257, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 258, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 259, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 250, + "EndLine": 313, + "Code": { + "Lines": [ + { + "Number": 250, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 251, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 254, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 255, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 256, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 257, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 258, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 259, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 250, + "EndLine": 313, + "Code": { + "Lines": [ + { + "Number": 250, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 251, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 254, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 255, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 256, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 257, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 258, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 259, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 250, + "EndLine": 313, + "Code": { + "Lines": [ + { + "Number": 250, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 251, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 254, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 255, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 256, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 257, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 258, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 259, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "kube-scheduler-kind-control-plane", + "Results": [ + { + "Target": "k8s.gcr.io/kube-scheduler:v1.21.1 (debian 10.9)", + "Class": "os-pkgs", + "Type": "debian", + "Vulnerabilities": [ + { + "VulnerabilityID": "DLA-3134-1", + "VendorIDs": [ + "DLA-3134-1" + ], + "PkgID": "tzdata@2021a-0+deb10u1", + "PkgName": "tzdata", + "InstalledVersion": "2021a-0+deb10u1", + "FixedVersion": "2021a-0+deb10u7", + "Layer": { + "Digest": "sha256:5dea5ec2316d4a067b946b15c3c4f140b4f2ad607e73e9bc41b673ee5ebb99a3", + "DiffID": "sha256:417cb9b79adeec55f58b890dc9831e252e3523d8de5fd28b4ee2abb151b7dc8b" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-3161-1", + "VendorIDs": [ + "DLA-3161-1" + ], + "PkgID": "tzdata@2021a-0+deb10u1", + "PkgName": "tzdata", + "InstalledVersion": "2021a-0+deb10u1", + "FixedVersion": "2021a-0+deb10u8", + "Layer": { + "Digest": "sha256:5dea5ec2316d4a067b946b15c3c4f140b4f2ad607e73e9bc41b673ee5ebb99a3", + "DiffID": "sha256:417cb9b79adeec55f58b890dc9831e252e3523d8de5fd28b4ee2abb151b7dc8b" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-3366-1", + "VendorIDs": [ + "DLA-3366-1" + ], + "PkgID": "tzdata@2021a-0+deb10u1", + "PkgName": "tzdata", + "InstalledVersion": "2021a-0+deb10u1", + "FixedVersion": "2021a-0+deb10u10", + "Layer": { + "Digest": "sha256:5dea5ec2316d4a067b946b15c3c4f140b4f2ad607e73e9bc41b673ee5ebb99a3", + "DiffID": "sha256:417cb9b79adeec55f58b890dc9831e252e3523d8de5fd28b4ee2abb151b7dc8b" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-3412-1", + "VendorIDs": [ + "DLA-3412-1" + ], + "PkgID": "tzdata@2021a-0+deb10u1", + "PkgName": "tzdata", + "InstalledVersion": "2021a-0+deb10u1", + "FixedVersion": "2021a-0+deb10u11", + "Layer": { + "Digest": "sha256:5dea5ec2316d4a067b946b15c3c4f140b4f2ad607e73e9bc41b673ee5ebb99a3", + "DiffID": "sha256:417cb9b79adeec55f58b890dc9831e252e3523d8de5fd28b4ee2abb151b7dc8b" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "kube-scheduler-kind-control-plane", + "Results": [ + { + "Target": "Pod/kube-scheduler-kind-control-plane", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 127, + "Failures": 14, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KCV0040", + "AVDID": "AVD-KCV-0040", + "Title": "Ensure that the --profiling argument is set to false", + "Description": "Disable profiling, if not needed.", + "Message": "Ensure that the --profiling argument is set to false", + "Namespace": "builtin.kubernetes.KCV0040", + "Query": "data.builtin.kubernetes.KCV0040.deny", + "Resolution": "Edit the Scheduler pod specification file /etc/kubernetes/manifests/kube-scheduler.yaml file on the Control Plane node and set the below parameter.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0040", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0040" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 156, + "EndLine": 197, + "Code": { + "Lines": [ + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.21.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 165, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 156, + "EndLine": 197, + "Code": { + "Lines": [ + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.21.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 165, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 156, + "EndLine": 197, + "Code": { + "Lines": [ + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.21.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 165, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV009", + "AVDID": "AVD-KSV-0009", + "Title": "Access to host network", + "Description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "Message": "Pod 'kube-scheduler-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true", + "Namespace": "builtin.kubernetes.KSV009", + "Query": "data.builtin.kubernetes.KSV009.deny", + "Resolution": "Do not set 'spec.template.spec.hostNetwork' to true.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv009", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 155, + "EndLine": 216, + "Code": { + "Lines": [ + { + "Number": 155, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 164, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 156, + "EndLine": 197, + "Code": { + "Lines": [ + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.21.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 165, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 156, + "EndLine": 197, + "Code": { + "Lines": [ + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.21.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 165, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 156, + "EndLine": 197, + "Code": { + "Lines": [ + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.21.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 165, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 156, + "EndLine": 197, + "Code": { + "Lines": [ + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.21.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 165, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 156, + "EndLine": 197, + "Code": { + "Lines": [ + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.21.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 165, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 156, + "EndLine": 197, + "Code": { + "Lines": [ + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.21.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 165, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 156, + "EndLine": 197, + "Code": { + "Lines": [ + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.21.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 165, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV023", + "AVDID": "AVD-KSV-0023", + "Title": "hostPath volumes mounted", + "Description": "HostPath volumes must be forbidden.", + "Message": "Pod 'kube-scheduler-kind-control-plane' should not set 'spec.template.volumes.hostPath'", + "Namespace": "builtin.kubernetes.KSV023", + "Query": "data.builtin.kubernetes.KSV023.deny", + "Resolution": "Do not set 'spec.volumes[*].hostPath'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv023", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 155, + "EndLine": 216, + "Code": { + "Lines": [ + { + "Number": 155, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 164, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 156, + "EndLine": 197, + "Code": { + "Lines": [ + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.21.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 165, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 156, + "EndLine": 197, + "Code": { + "Lines": [ + { + "Number": 156, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 157, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 158, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - --port=0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.21.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 165, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "kube-controller-manager-kind-control-plane", + "Results": [ + { + "Target": "k8s.gcr.io/kube-controller-manager:v1.21.1 (debian 10.9)", + "Class": "os-pkgs", + "Type": "debian", + "Vulnerabilities": [ + { + "VulnerabilityID": "DLA-3134-1", + "VendorIDs": [ + "DLA-3134-1" + ], + "PkgID": "tzdata@2021a-0+deb10u1", + "PkgName": "tzdata", + "InstalledVersion": "2021a-0+deb10u1", + "FixedVersion": "2021a-0+deb10u7", + "Layer": { + "Digest": "sha256:5dea5ec2316d4a067b946b15c3c4f140b4f2ad607e73e9bc41b673ee5ebb99a3", + "DiffID": "sha256:417cb9b79adeec55f58b890dc9831e252e3523d8de5fd28b4ee2abb151b7dc8b" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-3161-1", + "VendorIDs": [ + "DLA-3161-1" + ], + "PkgID": "tzdata@2021a-0+deb10u1", + "PkgName": "tzdata", + "InstalledVersion": "2021a-0+deb10u1", + "FixedVersion": "2021a-0+deb10u8", + "Layer": { + "Digest": "sha256:5dea5ec2316d4a067b946b15c3c4f140b4f2ad607e73e9bc41b673ee5ebb99a3", + "DiffID": "sha256:417cb9b79adeec55f58b890dc9831e252e3523d8de5fd28b4ee2abb151b7dc8b" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-3366-1", + "VendorIDs": [ + "DLA-3366-1" + ], + "PkgID": "tzdata@2021a-0+deb10u1", + "PkgName": "tzdata", + "InstalledVersion": "2021a-0+deb10u1", + "FixedVersion": "2021a-0+deb10u10", + "Layer": { + "Digest": "sha256:5dea5ec2316d4a067b946b15c3c4f140b4f2ad607e73e9bc41b673ee5ebb99a3", + "DiffID": "sha256:417cb9b79adeec55f58b890dc9831e252e3523d8de5fd28b4ee2abb151b7dc8b" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-3412-1", + "VendorIDs": [ + "DLA-3412-1" + ], + "PkgID": "tzdata@2021a-0+deb10u1", + "PkgName": "tzdata", + "InstalledVersion": "2021a-0+deb10u1", + "FixedVersion": "2021a-0+deb10u11", + "Layer": { + "Digest": "sha256:5dea5ec2316d4a067b946b15c3c4f140b4f2ad607e73e9bc41b673ee5ebb99a3", + "DiffID": "sha256:417cb9b79adeec55f58b890dc9831e252e3523d8de5fd28b4ee2abb151b7dc8b" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "kube-controller-manager-kind-control-plane", + "Results": [ + { + "Target": "Pod/kube-controller-manager-kind-control-plane", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 125, + "Failures": 16, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KCV0033", + "AVDID": "AVD-KCV-0033", + "Title": "Ensure that the --terminated-pod-gc-threshold argument is set as appropriate", + "Description": "Activate garbage collector on pod termination, as appropriate.", + "Message": "Ensure that the --terminated-pod-gc-threshold argument is set as appropriate", + "Namespace": "builtin.kubernetes.KCV0033", + "Query": "data.builtin.kubernetes.KCV0033.deny", + "Resolution": "Edit the Controller Manager pod specification file /etc/kubernetes/manifests/kube-controller-manager.yaml on the Control Plane node and set the --terminated-pod-gc-threshold to an appropriate threshold.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0033", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0033" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0034", + "AVDID": "AVD-KCV-0034", + "Title": "Ensure that the --profiling argument is set to false", + "Description": "Disable profiling, if not needed.", + "Message": "Ensure that the --profiling argument is set to false", + "Namespace": "builtin.kubernetes.KCV0034", + "Query": "data.builtin.kubernetes.KCV0034.deny", + "Resolution": "Edit the Controller Manager pod specification file /etc/kubernetes/manifests/kube-controller-manager.yaml on the Control Plane node and set the below parameter.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0034", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0034" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0038", + "AVDID": "AVD-KCV-0038", + "Title": "Ensure that the RotateKubeletServerCertificate argument is set to true", + "Description": "Enable kubelet server certificate rotation on controller-manager.", + "Message": "Ensure that the RotateKubeletServerCertificate argument is set to true", + "Namespace": "builtin.kubernetes.KCV0038", + "Query": "data.builtin.kubernetes.KCV0038.deny", + "Resolution": "Edit the Controller Manager pod specification file /etc/kubernetes/manifests/kube-controller-manager.yaml on the Control Plane node and set the --feature-gates parameter to include RotateKubeletServerCertificate=true .", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0038", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0038" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV009", + "AVDID": "AVD-KSV-0009", + "Title": "Access to host network", + "Description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "Message": "Pod 'kube-controller-manager-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true", + "Namespace": "builtin.kubernetes.KSV009", + "Query": "data.builtin.kubernetes.KSV009.deny", + "Resolution": "Do not set 'spec.template.spec.hostNetwork' to true.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv009", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 226, + "EndLine": 341, + "Code": { + "Lines": [ + { + "Number": 226, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 235, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV023", + "AVDID": "AVD-KSV-0023", + "Title": "hostPath volumes mounted", + "Description": "HostPath volumes must be forbidden.", + "Message": "Pod 'kube-controller-manager-kind-control-plane' should not set 'spec.template.volumes.hostPath'", + "Namespace": "builtin.kubernetes.KSV023", + "Query": "data.builtin.kubernetes.KSV023.deny", + "Resolution": "Do not set 'spec.volumes[*].hostPath'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv023", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 226, + "EndLine": 341, + "Code": { + "Lines": [ + { + "Number": 226, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 235, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 227, + "EndLine": 298, + "Code": { + "Lines": [ + { + "Number": 227, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 228, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 233, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 236, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "default", + "Kind": "Service", + "Name": "kubernetes", + "Results": [ + { + "Target": "Service/kubernetes", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Service", + "Name": "kube-dns", + "Results": [ + { + "Target": "Service/kube-dns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kubernetes-dashboard", + "Kind": "Service", + "Name": "dashboard-metrics-scraper", + "Results": [ + { + "Target": "Service/dashboard-metrics-scraper", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kubernetes-dashboard", + "Kind": "Service", + "Name": "kubernetes-dashboard", + "Results": [ + { + "Target": "Service/kubernetes-dashboard", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "Service", + "Name": "controller-manager-metrics-service", + "Results": [ + { + "Target": "Service/controller-manager-metrics-service", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "Service", + "Name": "securecodebox-operator-minio", + "Results": [ + { + "Target": "Service/securecodebox-operator-minio", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "default", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "ServiceAccount", + "Name": "lurker", + "Results": [ + { + "Target": "ServiceAccount/lurker", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "ServiceAccount", + "Name": "trivy-k8s", + "Results": [ + { + "Target": "ServiceAccount/trivy-k8s", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-node-lease", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "attachdetach-controller", + "Results": [ + { + "Target": "ServiceAccount/attachdetach-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "bootstrap-signer", + "Results": [ + { + "Target": "ServiceAccount/bootstrap-signer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "certificate-controller", + "Results": [ + { + "Target": "ServiceAccount/certificate-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "clusterrole-aggregation-controller", + "Results": [ + { + "Target": "ServiceAccount/clusterrole-aggregation-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "coredns", + "Results": [ + { + "Target": "ServiceAccount/coredns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "cronjob-controller", + "Results": [ + { + "Target": "ServiceAccount/cronjob-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "daemon-set-controller", + "Results": [ + { + "Target": "ServiceAccount/daemon-set-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "deployment-controller", + "Results": [ + { + "Target": "ServiceAccount/deployment-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "disruption-controller", + "Results": [ + { + "Target": "ServiceAccount/disruption-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "DaemonSet", + "Name": "kindnet", + "Results": [ + { + "Target": "docker.io/kindest/kindnetd:v20210326-1e038dc5 (debian 10.7)", + "Class": "os-pkgs", + "Type": "debian", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2011-3374", + "PkgID": "apt@1.8.2.2", + "PkgName": "apt", + "InstalledVersion": "1.8.2.2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "PublishedDate": "2019-11-26T00:15:00Z", + "LastModifiedDate": "2021-02-09T16:08:00Z" + }, + { + "VulnerabilityID": "CVE-2021-37600", + "PkgID": "bsdutils@1:2.33.1-0.1", + "PkgName": "bsdutils", + "InstalledVersion": "1:2.33.1-0.1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-37600", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: integer overflow can lead to buffer overflow in get_sem_elements() in sys-utils/ipcutils.c", + "Description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 1.2, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-37600", + "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + "https://github.com/karelzak/util-linux/issues/1395", + "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + "https://security.netapp.com/advisory/ntap-20210902-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-37600" + ], + "PublishedDate": "2021-07-30T14:15:00Z", + "LastModifiedDate": "2021-10-18T12:18:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "bsdutils@1:2.33.1-0.1", + "PkgName": "bsdutils", + "InstalledVersion": "1:2.33.1-0.1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2016-2781", + "PkgID": "coreutils@8.30-3", + "PkgName": "coreutils", + "InstalledVersion": "8.30-3", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-2781", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "coreutils: Non-privileged session can escape to the parent session in chroot", + "Description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "Severity": "LOW", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:N", + "V2Score": 2.1, + "V3Score": 6.5 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H", + "V2Score": 6.2, + "V3Score": 8.6 + } + }, + "References": [ + "http://seclists.org/oss-sec/2016/q1/452", + "http://www.openwall.com/lists/oss-security/2016/02/28/2", + "http://www.openwall.com/lists/oss-security/2016/02/28/3", + "https://access.redhat.com/security/cve/CVE-2016-2781", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lore.kernel.org/patchwork/patch/793178/", + "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + "https://www.cve.org/CVERecord?id=CVE-2016-2781" + ], + "PublishedDate": "2017-02-07T15:59:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-18018", + "PkgID": "coreutils@8.30-3", + "PkgName": "coreutils", + "InstalledVersion": "8.30-3", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-18018", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "coreutils: race condition vulnerability in chown and chgrp", + "Description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX \"-R -L\" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "Severity": "LOW", + "CweIDs": [ + "CWE-362" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 1.9, + "V3Score": 4.7 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:R/S:U/C:L/I:L/A:L", + "V3Score": 4.2 + } + }, + "References": [ + "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + "https://access.redhat.com/security/cve/CVE-2017-18018", + "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + "https://www.cve.org/CVERecord?id=CVE-2017-18018" + ], + "PublishedDate": "2018-01-04T04:29:00Z", + "LastModifiedDate": "2018-01-19T15:46:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1664", + "VendorIDs": [ + "DSA-5147-1" + ], + "PkgID": "dpkg@1.19.7", + "PkgName": "dpkg", + "InstalledVersion": "1.19.7", + "FixedVersion": "1.19.8", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1664", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dpkg::Source::Archive in dpkg, the Debian package management system, b ...", + "Description": "Dpkg::Source::Archive in dpkg, the Debian package management system, before version 1.21.8, 1.20.10, 1.19.8, 1.18.26 is prone to a directory traversal vulnerability. When extracting untrusted source packages in v2 and v3 source package formats that include a debian.tar, the in-place extraction can lead to directory traversal situations on specially crafted orig.tar and debian.tar tarballs.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-22" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1664", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f23dddc17f69c9598477098c7fb9936e15fa495", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=58814cacee39c4ce9e2cd0e3a3b9b57ad437eff5", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=7a6c03cb34d4a09f35df2f10779cbf1b70a5200b", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=faa4c92debe45412bfcf8a44f26e827800bb24be", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00033.html", + "https://lists.debian.org/debian-security-announce/2022/msg00115.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1664", + "https://security.netapp.com/advisory/ntap-20221007-0002/", + "https://ubuntu.com/security/notices/USN-5446-1", + "https://ubuntu.com/security/notices/USN-5446-2" + ], + "PublishedDate": "2022-05-26T14:15:00Z", + "LastModifiedDate": "2022-12-03T02:19:00Z" + }, + { + "VulnerabilityID": "CVE-2018-12886", + "PkgID": "gcc-8-base@8.3.0-6", + "PkgName": "gcc-8-base", + "InstalledVersion": "8.3.0-6", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12886", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass", + "Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H", + "V3Score": 6.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-12886", + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379\u0026view=markup", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "https://www.cve.org/CVERecord?id=CVE-2018-12886", + "https://www.gnu.org/software/gcc/gcc-8/changes.html" + ], + "PublishedDate": "2019-05-22T19:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2019-15847", + "PkgID": "gcc-8-base@8.3.0-6", + "PkgName": "gcc-8-base", + "InstalledVersion": "8.3.0-6", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15847", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gcc: POWER9 \"DARN\" RNG intrinsic produces repeated output", + "Description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-331" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + "https://access.redhat.com/security/cve/CVE-2019-15847", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + "https://linux.oracle.com/cve/CVE-2019-15847.html", + "https://linux.oracle.com/errata/ELSA-2020-1864.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + "https://www.cve.org/CVERecord?id=CVE-2019-15847" + ], + "PublishedDate": "2019-09-02T23:15:00Z", + "LastModifiedDate": "2020-09-17T13:38:00Z" + }, + { + "VulnerabilityID": "CVE-2022-34903", + "VendorIDs": [ + "DSA-5174-1" + ], + "PkgID": "gpgv@2.2.12-1+deb10u1", + "PkgName": "gpgv", + "InstalledVersion": "2.2.12-1+deb10u1", + "FixedVersion": "2.2.12-1+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-34903", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Signature spoofing via status line injection", + "Description": "GnuPG through 2.3.6, in unusual situations where an attacker possesses any secret-key information from a victim's keyring and other constraints (e.g., use of GPGME) are met, allows signature forgery via injection into the status line.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:N", + "V2Score": 5.8, + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2022/07/02/1", + "https://access.redhat.com/errata/RHSA-2022:6602", + "https://access.redhat.com/security/cve/CVE-2022-34903", + "https://bugs.debian.org/1014157", + "https://bugzilla.redhat.com/2102868", + "https://bugzilla.redhat.com/show_bug.cgi?id=2102868", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34903", + "https://dev.gnupg.org/T6027", + "https://errata.almalinux.org/9/ALSA-2022-6602.html", + "https://errata.rockylinux.org/RLSA-2022:6602", + "https://linux.oracle.com/cve/CVE-2022-34903.html", + "https://linux.oracle.com/errata/ELSA-2022-6602.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-34903", + "https://security.netapp.com/advisory/ntap-20220826-0005/", + "https://ubuntu.com/security/notices/USN-5503-1", + "https://ubuntu.com/security/notices/USN-5503-2", + "https://www.cve.org/CVERecord?id=CVE-2022-34903", + "https://www.debian.org/security/2022/dsa-5174", + "https://www.openwall.com/lists/oss-security/2022/06/30/1" + ], + "PublishedDate": "2022-07-01T22:15:00Z", + "LastModifiedDate": "2022-09-09T20:40:00Z" + }, + { + "VulnerabilityID": "CVE-2019-14855", + "PkgID": "gpgv@2.2.12-1+deb10u1", + "PkgName": "gpgv", + "InstalledVersion": "2.2.12-1+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-14855", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gnupg2: OpenPGP Key Certification Forgeries with SHA-1", + "Description": "A flaw was found in the way certificate signatures could be forged using collisions found in the SHA-1 algorithm. An attacker could use this weakness to create forged certificate signatures. This issue affects GnuPG versions before 2.2.18.", + "Severity": "LOW", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-14855", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-14855", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-14855", + "https://dev.gnupg.org/T4755", + "https://eprint.iacr.org/2020/014.pdf", + "https://lists.gnupg.org/pipermail/gnupg-announce/2019q4/000442.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-14855", + "https://rwc.iacr.org/2020/slides/Leurent.pdf", + "https://ubuntu.com/security/notices/USN-4516-1", + "https://usn.ubuntu.com/4516-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-14855" + ], + "PublishedDate": "2020-03-20T16:15:00Z", + "LastModifiedDate": "2022-11-08T02:28:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3219", + "PkgID": "gpgv@2.2.12-1+deb10u1", + "PkgName": "gpgv", + "InstalledVersion": "2.2.12-1+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3219", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "denial of service issue (resource consumption) using compressed packets", + "Description": "GnuPG can be made to spin on a relatively small input by (for example) crafting a public key with thousands of signatures attached, compressed down to just a few KB.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-3219", + "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + "https://dev.gnupg.org/D556", + "https://dev.gnupg.org/T5993", + "https://marc.info/?l=oss-security\u0026m=165696590211434\u0026w=4", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + "https://security.netapp.com/advisory/ntap-20230324-0001/", + "https://www.cve.org/CVERecord?id=CVE-2022-3219" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-05-26T16:31:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1271", + "VendorIDs": [ + "DSA-5122-1" + ], + "PkgID": "gzip@1.9-3", + "PkgName": "gzip", + "InstalledVersion": "1.9-3", + "FixedVersion": "1.9-3+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1271", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "arbitrary-file-write vulnerability", + "Description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8" + ], + "PublishedDate": "2022-08-31T16:15:00Z", + "LastModifiedDate": "2022-10-07T14:14:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "iptables@1.8.5-3~bpo10+1", + "PkgName": "iptables", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:98435e81eab0fa9aaec073adcfc8eea85c7c033f002fbb5bcf9ac1c101cd6280", + "DiffID": "sha256:8c9959c71363d26935985a4fce4264517218721ee2676d8c7e4588a2baf8f024" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2019-11360", + "PkgID": "iptables@1.8.5-3~bpo10+1", + "PkgName": "iptables", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:98435e81eab0fa9aaec073adcfc8eea85c7c033f002fbb5bcf9ac1c101cd6280", + "DiffID": "sha256:8c9959c71363d26935985a4fce4264517218721ee2676d8c7e4588a2baf8f024" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11360", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: buffer overflow in iptables-restore", + "Description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:S/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 3.5, + "V3Score": 4.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.2 + } + }, + "References": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360" + ], + "PublishedDate": "2019-07-12T14:15:00Z", + "LastModifiedDate": "2021-07-21T11:39:00Z" + }, + { + "VulnerabilityID": "CVE-2011-3374", + "PkgID": "libapt-pkg5.0@1.8.2.2", + "PkgName": "libapt-pkg5.0", + "InstalledVersion": "1.8.2.2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "PublishedDate": "2019-11-26T00:15:00Z", + "LastModifiedDate": "2021-02-09T16:08:00Z" + }, + { + "VulnerabilityID": "DLA-3112-1", + "VendorIDs": [ + "DLA-3112-1" + ], + "PkgID": "libbz2-1.0@1.0.6-9.2~deb10u1", + "PkgName": "libbz2-1.0", + "InstalledVersion": "1.0.6-9.2~deb10u1", + "FixedVersion": "1.0.6-9.2~deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "bzip2 - bugfix update", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "CVE-2021-33574", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33574", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: mq_notify does not handle separately allocated thread attributes", + "Description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-33574", + "https://linux.oracle.com/cve/CVE-2021-33574.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210629-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1", + "https://www.cve.org/CVERecord?id=CVE-2021-33574" + ], + "PublishedDate": "2021-05-25T22:15:00Z", + "LastModifiedDate": "2022-11-08T13:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-35942", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-35942", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Arbitrary read in wordexp()", + "Description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 9.1 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-35942.json", + "https://access.redhat.com/security/cve/CVE-2021-35942", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-35942", + "https://linux.oracle.com/cve/CVE-2021-35942.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + "https://security.gentoo.org/glsa/202208-24", + "https://security.netapp.com/advisory/ntap-20210827-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + "https://sourceware.org/glibc/wiki/Security%20Exceptions", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-35942" + ], + "PublishedDate": "2021-07-22T18:15:00Z", + "LastModifiedDate": "2022-11-08T13:29:00Z" + }, + { + "VulnerabilityID": "CVE-2022-23218", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-23218", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Stack-based buffer overflow in svcunix_create via long pathnames", + "Description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-120" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-23218", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23218", + "https://linux.oracle.com/cve/CVE-2022-23218.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23218", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-01-14T07:15:00Z", + "LastModifiedDate": "2022-11-08T13:37:00Z" + }, + { + "VulnerabilityID": "CVE-2022-23219", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-23219", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Stack-based buffer overflow in sunrpc clnt_create via a long pathname", + "Description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-120" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-23219", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23219", + "https://linux.oracle.com/cve/CVE-2022-23219.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23219", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-01-14T07:15:00Z", + "LastModifiedDate": "2022-11-08T13:32:00Z" + }, + { + "VulnerabilityID": "CVE-2020-1751", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1751", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: array overflow in backtrace functions for powerpc", + "Description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 5.9, + "V3Score": 7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-1751", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1751", + "https://linux.oracle.com/cve/CVE-2020-1751.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200430-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1751" + ], + "PublishedDate": "2020-04-17T19:15:00Z", + "LastModifiedDate": "2023-01-27T18:34:00Z" + }, + { + "VulnerabilityID": "CVE-2020-1752", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1752", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: use-after-free in glob() function when expanding ~user", + "Description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 3.7, + "V3Score": 7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-1752", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1752", + "https://linux.oracle.com/cve/CVE-2020-1752.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + "https://security.gentoo.org/glsa/202101-20", + "https://security.netapp.com/advisory/ntap-20200511-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1752" + ], + "PublishedDate": "2020-04-30T17:15:00Z", + "LastModifiedDate": "2022-10-28T20:06:00Z" + }, + { + "VulnerabilityID": "CVE-2020-6096", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-6096", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: signed comparison vulnerability in the ARMv7 memcpy function", + "Description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-195" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-6096", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6096", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/attachment.cgi?id=12334", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + "https://ubuntu.com/security/notices/USN-4954-1", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2020-6096", + "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019" + ], + "PublishedDate": "2020-04-01T22:15:00Z", + "LastModifiedDate": "2022-11-21T19:39:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3326", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3326", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Assertion failure in ISO-2022-JP-3 gconv module related to combining characters", + "Description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-617" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/01/28/2", + "https://access.redhat.com/security/cve/CVE-2021-3326", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=2146", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3326", + "https://linux.oracle.com/cve/CVE-2021-3326.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210304-0007/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + "https://sourceware.org/pipermail/libc-alpha/2021-January/122058.html", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3326", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "PublishedDate": "2021-01-27T20:15:00Z", + "LastModifiedDate": "2022-11-04T20:07:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3999", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3999", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "Description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2023-02-12T23:43:00Z" + }, + { + "VulnerabilityID": "CVE-2016-10228", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10228", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: iconv program can hang when invoked with the -c option", + "Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://openwall.com/lists/oss-security/2017/03/01/10", + "http://www.securityfocus.com/bid/96525", + "https://access.redhat.com/security/cve/CVE-2016-10228", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10228", + "https://linux.oracle.com/cve/CVE-2016-10228.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2016-10228", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2017-03-02T01:59:00Z", + "LastModifiedDate": "2022-10-17T18:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-25013", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-25013", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: buffer over-read in iconv when processing invalid multi-byte input sequences in the EUC-KR encoding", + "Description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 7.1, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-25013", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-25013", + "https://linux.oracle.com/cve/CVE-2019-25013.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210205-0004/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2019-25013", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2021-01-04T18:15:00Z", + "LastModifiedDate": "2022-11-03T19:37:00Z" + }, + { + "VulnerabilityID": "CVE-2020-10029", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-10029", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions", + "Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:H", + "V3Score": 5.7 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + "https://access.redhat.com/security/cve/CVE-2020-10029", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10029", + "https://linux.oracle.com/cve/CVE-2020-10029.html", + "https://linux.oracle.com/errata/ELSA-2021-0348.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200327-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-10029" + ], + "PublishedDate": "2020-03-04T15:15:00Z", + "LastModifiedDate": "2022-11-10T03:31:00Z" + }, + { + "VulnerabilityID": "CVE-2020-27618", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-27618", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: iconv when processing invalid multi-byte input sequences fails to advance the input state, which could result in an infinite loop", + "Description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-835" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-27618", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27618", + "https://linux.oracle.com/cve/CVE-2020-27618.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210401-0006/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2020-27618", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "PublishedDate": "2021-02-26T23:15:00Z", + "LastModifiedDate": "2022-10-28T20:06:00Z" + }, + { + "VulnerabilityID": "CVE-2010-4756", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "Severity": "LOW", + "CweIDs": [ + "CWE-399" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V2Score": 4 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V2Score": 5 + } + }, + "References": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756" + ], + "PublishedDate": "2011-03-02T20:00:00Z", + "LastModifiedDate": "2021-09-01T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-20796", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796" + ], + "PublishedDate": "2019-02-26T02:29:00Z", + "LastModifiedDate": "2019-11-05T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010022", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack guard protection bypass", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2021-06-10T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010023", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "Description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010024", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: ASLR bypass using cache of thread stack and heap", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-200" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010025", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: information disclosure of heap addresses of pthread_created thread", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-330" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19126", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19126", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries", + "Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "Severity": "LOW", + "CweIDs": [ + "CWE-665" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19126", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19126", + "https://linux.oracle.com/cve/CVE-2019-19126.html", + "https://linux.oracle.com/errata/ELSA-2020-3861.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + "https://sourceware.org/ml/libc-alpha/2019-11/msg00649.html", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-19126" + ], + "PublishedDate": "2019-11-19T22:15:00Z", + "LastModifiedDate": "2022-11-08T03:16:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9192", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192" + ], + "PublishedDate": "2019-02-26T18:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2021-27645", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-27645", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Use-after-free in addgetnetgrentX function in netgroupcache.c", + "Description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "Severity": "LOW", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 1.9, + "V3Score": 2.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-27645", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27645", + "https://linux.oracle.com/cve/CVE-2021-27645.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + "https://security.gentoo.org/glsa/202107-07", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27462", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2021-27645" + ], + "PublishedDate": "2021-02-24T15:15:00Z", + "LastModifiedDate": "2022-11-04T20:06:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33574", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33574", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: mq_notify does not handle separately allocated thread attributes", + "Description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-33574", + "https://linux.oracle.com/cve/CVE-2021-33574.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210629-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1", + "https://www.cve.org/CVERecord?id=CVE-2021-33574" + ], + "PublishedDate": "2021-05-25T22:15:00Z", + "LastModifiedDate": "2022-11-08T13:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-35942", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-35942", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Arbitrary read in wordexp()", + "Description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 9.1 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-35942.json", + "https://access.redhat.com/security/cve/CVE-2021-35942", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-35942", + "https://linux.oracle.com/cve/CVE-2021-35942.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + "https://security.gentoo.org/glsa/202208-24", + "https://security.netapp.com/advisory/ntap-20210827-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + "https://sourceware.org/glibc/wiki/Security%20Exceptions", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-35942" + ], + "PublishedDate": "2021-07-22T18:15:00Z", + "LastModifiedDate": "2022-11-08T13:29:00Z" + }, + { + "VulnerabilityID": "CVE-2022-23218", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-23218", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Stack-based buffer overflow in svcunix_create via long pathnames", + "Description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-120" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-23218", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23218", + "https://linux.oracle.com/cve/CVE-2022-23218.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23218", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-01-14T07:15:00Z", + "LastModifiedDate": "2022-11-08T13:37:00Z" + }, + { + "VulnerabilityID": "CVE-2022-23219", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-23219", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Stack-based buffer overflow in sunrpc clnt_create via a long pathname", + "Description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-120" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-23219", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23219", + "https://linux.oracle.com/cve/CVE-2022-23219.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23219", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-01-14T07:15:00Z", + "LastModifiedDate": "2022-11-08T13:32:00Z" + }, + { + "VulnerabilityID": "CVE-2020-1751", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1751", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: array overflow in backtrace functions for powerpc", + "Description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 5.9, + "V3Score": 7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-1751", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1751", + "https://linux.oracle.com/cve/CVE-2020-1751.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200430-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1751" + ], + "PublishedDate": "2020-04-17T19:15:00Z", + "LastModifiedDate": "2023-01-27T18:34:00Z" + }, + { + "VulnerabilityID": "CVE-2020-1752", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1752", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: use-after-free in glob() function when expanding ~user", + "Description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 3.7, + "V3Score": 7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-1752", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1752", + "https://linux.oracle.com/cve/CVE-2020-1752.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + "https://security.gentoo.org/glsa/202101-20", + "https://security.netapp.com/advisory/ntap-20200511-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1752" + ], + "PublishedDate": "2020-04-30T17:15:00Z", + "LastModifiedDate": "2022-10-28T20:06:00Z" + }, + { + "VulnerabilityID": "CVE-2020-6096", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-6096", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: signed comparison vulnerability in the ARMv7 memcpy function", + "Description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-195" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-6096", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6096", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/attachment.cgi?id=12334", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + "https://ubuntu.com/security/notices/USN-4954-1", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2020-6096", + "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019" + ], + "PublishedDate": "2020-04-01T22:15:00Z", + "LastModifiedDate": "2022-11-21T19:39:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3326", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3326", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Assertion failure in ISO-2022-JP-3 gconv module related to combining characters", + "Description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-617" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/01/28/2", + "https://access.redhat.com/security/cve/CVE-2021-3326", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=2146", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3326", + "https://linux.oracle.com/cve/CVE-2021-3326.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210304-0007/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + "https://sourceware.org/pipermail/libc-alpha/2021-January/122058.html", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3326", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "PublishedDate": "2021-01-27T20:15:00Z", + "LastModifiedDate": "2022-11-04T20:07:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3999", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3999", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "Description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2023-02-12T23:43:00Z" + }, + { + "VulnerabilityID": "CVE-2016-10228", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10228", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: iconv program can hang when invoked with the -c option", + "Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://openwall.com/lists/oss-security/2017/03/01/10", + "http://www.securityfocus.com/bid/96525", + "https://access.redhat.com/security/cve/CVE-2016-10228", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10228", + "https://linux.oracle.com/cve/CVE-2016-10228.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2016-10228", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2017-03-02T01:59:00Z", + "LastModifiedDate": "2022-10-17T18:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-25013", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-25013", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: buffer over-read in iconv when processing invalid multi-byte input sequences in the EUC-KR encoding", + "Description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 7.1, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-25013", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-25013", + "https://linux.oracle.com/cve/CVE-2019-25013.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210205-0004/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2019-25013", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2021-01-04T18:15:00Z", + "LastModifiedDate": "2022-11-03T19:37:00Z" + }, + { + "VulnerabilityID": "CVE-2020-10029", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-10029", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions", + "Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:H", + "V3Score": 5.7 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + "https://access.redhat.com/security/cve/CVE-2020-10029", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10029", + "https://linux.oracle.com/cve/CVE-2020-10029.html", + "https://linux.oracle.com/errata/ELSA-2021-0348.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200327-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-10029" + ], + "PublishedDate": "2020-03-04T15:15:00Z", + "LastModifiedDate": "2022-11-10T03:31:00Z" + }, + { + "VulnerabilityID": "CVE-2020-27618", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-27618", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: iconv when processing invalid multi-byte input sequences fails to advance the input state, which could result in an infinite loop", + "Description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-835" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-27618", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27618", + "https://linux.oracle.com/cve/CVE-2020-27618.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210401-0006/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2020-27618", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "PublishedDate": "2021-02-26T23:15:00Z", + "LastModifiedDate": "2022-10-28T20:06:00Z" + }, + { + "VulnerabilityID": "CVE-2010-4756", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "Severity": "LOW", + "CweIDs": [ + "CWE-399" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V2Score": 4 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V2Score": 5 + } + }, + "References": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756" + ], + "PublishedDate": "2011-03-02T20:00:00Z", + "LastModifiedDate": "2021-09-01T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-20796", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796" + ], + "PublishedDate": "2019-02-26T02:29:00Z", + "LastModifiedDate": "2019-11-05T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010022", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack guard protection bypass", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2021-06-10T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010023", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "Description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010024", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: ASLR bypass using cache of thread stack and heap", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-200" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010025", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: information disclosure of heap addresses of pthread_created thread", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-330" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19126", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19126", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries", + "Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "Severity": "LOW", + "CweIDs": [ + "CWE-665" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19126", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19126", + "https://linux.oracle.com/cve/CVE-2019-19126.html", + "https://linux.oracle.com/errata/ELSA-2020-3861.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + "https://sourceware.org/ml/libc-alpha/2019-11/msg00649.html", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-19126" + ], + "PublishedDate": "2019-11-19T22:15:00Z", + "LastModifiedDate": "2022-11-08T03:16:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9192", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192" + ], + "PublishedDate": "2019-02-26T18:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2021-27645", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-27645", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Use-after-free in addgetnetgrentX function in netgroupcache.c", + "Description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "Severity": "LOW", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 1.9, + "V3Score": 2.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-27645", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27645", + "https://linux.oracle.com/cve/CVE-2021-27645.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + "https://security.gentoo.org/glsa/202107-07", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27462", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2021-27645" + ], + "PublishedDate": "2021-02-24T15:15:00Z", + "LastModifiedDate": "2022-11-04T20:06:00Z" + }, + { + "VulnerabilityID": "CVE-2019-8457", + "PkgID": "libdb5.3@5.3.28+dfsg1-0.5", + "PkgName": "libdb5.3", + "InstalledVersion": "5.3.28+dfsg1-0.5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-8457", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "sqlite: heap out-of-bound read in function rtreenode()", + "Description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + "https://access.redhat.com/security/cve/CVE-2019-8457", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://linux.oracle.com/cve/CVE-2019-8457.html", + "https://linux.oracle.com/errata/ELSA-2020-1810.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + "https://security.netapp.com/advisory/ntap-20190606-0002/", + "https://ubuntu.com/security/notices/USN-4004-1", + "https://ubuntu.com/security/notices/USN-4004-2", + "https://ubuntu.com/security/notices/USN-4019-1", + "https://ubuntu.com/security/notices/USN-4019-2", + "https://usn.ubuntu.com/4004-1/", + "https://usn.ubuntu.com/4004-2/", + "https://usn.ubuntu.com/4019-1/", + "https://usn.ubuntu.com/4019-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-8457", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.sqlite.org/releaselog/3_28_0.html", + "https://www.sqlite.org/src/info/90acdbfce9c08858" + ], + "PublishedDate": "2019-05-30T16:29:00Z", + "LastModifiedDate": "2021-07-31T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-12886", + "PkgID": "libgcc1@1:8.3.0-6", + "PkgName": "libgcc1", + "InstalledVersion": "1:8.3.0-6", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12886", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass", + "Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H", + "V3Score": 6.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-12886", + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379\u0026view=markup", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "https://www.cve.org/CVERecord?id=CVE-2018-12886", + "https://www.gnu.org/software/gcc/gcc-8/changes.html" + ], + "PublishedDate": "2019-05-22T19:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2019-15847", + "PkgID": "libgcc1@1:8.3.0-6", + "PkgName": "libgcc1", + "InstalledVersion": "1:8.3.0-6", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15847", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gcc: POWER9 \"DARN\" RNG intrinsic produces repeated output", + "Description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-331" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + "https://access.redhat.com/security/cve/CVE-2019-15847", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + "https://linux.oracle.com/cve/CVE-2019-15847.html", + "https://linux.oracle.com/errata/ELSA-2020-1864.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + "https://www.cve.org/CVERecord?id=CVE-2019-15847" + ], + "PublishedDate": "2019-09-02T23:15:00Z", + "LastModifiedDate": "2020-09-17T13:38:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33560", + "PkgID": "libgcrypt20@1.8.4-5", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.4-5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33560", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm", + "Description": "Libgcrypt before 1.8.8 and 1.9.x before 1.9.3 mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm, and the window size is not chosen appropriately. This, for example, affects use of ElGamal in OpenPGP.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + "https://access.redhat.com/security/cve/CVE-2021-33560", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + "https://dev.gnupg.org/T5305", + "https://dev.gnupg.org/T5328", + "https://dev.gnupg.org/T5466", + "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2021-4409.html", + "https://linux.oracle.com/cve/CVE-2021-33560.html", + "https://linux.oracle.com/errata/ELSA-2022-9263.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33560", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-06-08T11:15:00Z", + "LastModifiedDate": "2022-12-07T01:20:00Z" + }, + { + "VulnerabilityID": "CVE-2019-13627", + "PkgID": "libgcrypt20@1.8.4-5", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.4-5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-13627", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: ECDSA timing attack allowing private key leak", + "Description": "It was discovered that there was a ECDSA timing attack in the libgcrypt20 cryptographic library. Version affected: 1.8.4-5, 1.7.6-2+deb9u3, and 1.6.3-2+deb8u4. Versions fixed: 1.8.5-2 and 1.6.3-2+deb8u7.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:N", + "V2Score": 2.6, + "V3Score": 6.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:N", + "V3Score": 6.3 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00060.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00018.html", + "http://www.openwall.com/lists/oss-security/2019/10/02/2", + "https://access.redhat.com/security/cve/CVE-2019-13627", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-13627", + "https://dev.gnupg.org/T4683", + "https://github.com/gpg/libgcrypt/releases/tag/libgcrypt-1.8.5", + "https://linux.oracle.com/cve/CVE-2019-13627.html", + "https://linux.oracle.com/errata/ELSA-2020-4482.html", + "https://lists.debian.org/debian-lts-announce/2019/09/msg00024.html", + "https://lists.debian.org/debian-lts-announce/2020/01/msg00001.html", + "https://minerva.crocs.fi.muni.cz/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-13627", + "https://security-tracker.debian.org/tracker/CVE-2019-13627", + "https://security.gentoo.org/glsa/202003-32", + "https://ubuntu.com/security/notices/USN-4236-1", + "https://ubuntu.com/security/notices/USN-4236-2", + "https://ubuntu.com/security/notices/USN-4236-3", + "https://usn.ubuntu.com/4236-1/", + "https://usn.ubuntu.com/4236-2/", + "https://usn.ubuntu.com/4236-3/", + "https://www.cve.org/CVERecord?id=CVE-2019-13627" + ], + "PublishedDate": "2019-09-25T15:15:00Z", + "LastModifiedDate": "2021-07-21T11:39:00Z" + }, + { + "VulnerabilityID": "CVE-2021-40528", + "PkgID": "libgcrypt20@1.8.4-5", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.4-5", + "FixedVersion": "1.8.4-5+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-40528", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "ElGamal implementation allows plaintext recovery", + "Description": "The ElGamal implementation in Libgcrypt before 1.9.4 allows plaintext recovery because, during interaction between two cryptographic libraries, a certain dangerous combination of the prime defined by the receiver's public key, the generator defined by the receiver's public key, and the sender's ephemeral exponents can lead to a cross-configuration attack against OpenPGP.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:H/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 2.6, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:5311", + "https://access.redhat.com/security/cve/CVE-2021-40528", + "https://bugzilla.redhat.com/2002816", + "https://bugzilla.redhat.com/show_bug.cgi?id=2002816", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-40528", + "https://dev.gnupg.org/rCb118681ebc4c9ea4b9da79b0f9541405a64f4c13", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2022-5311.html", + "https://errata.rockylinux.org/RLSA-2022:5311", + "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=commit;h=3462280f2e23e16adf3ed5176e0f2413d8861320", + "https://ibm.github.io/system-security-research-updates/2021/07/20/insecurity-elgamal-pt1", + "https://ibm.github.io/system-security-research-updates/2021/09/06/insecurity-elgamal-pt2", + "https://linux.oracle.com/cve/CVE-2021-40528.html", + "https://linux.oracle.com/errata/ELSA-2022-9564.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-40528", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-40528" + ], + "PublishedDate": "2021-09-06T19:15:00Z", + "LastModifiedDate": "2022-12-07T01:36:00Z" + }, + { + "VulnerabilityID": "CVE-2018-6829", + "PkgID": "libgcrypt20@1.8.4-5", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.4-5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6829", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: ElGamal implementation doesn't have semantic security due to incorrectly encoded plaintexts possibly allowing to obtain sensitive information", + "Description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-6829", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + "https://www.cve.org/CVERecord?id=CVE-2018-6829", + "https://www.oracle.com/security-alerts/cpujan2020.html" + ], + "PublishedDate": "2018-02-07T23:29:00Z", + "LastModifiedDate": "2020-01-15T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-43618", + "PkgID": "libgmp10@2:6.1.2+dfsg-4", + "PkgName": "libgmp10", + "InstalledVersion": "2:6.1.2+dfsg-4", + "FixedVersion": "2:6.1.2+dfsg-4+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-43618", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Integer overflow and resultant buffer overflow via crafted input", + "Description": "GNU Multiple Precision Arithmetic Library (GMP) through 6.2.1 has an mpz/inp_raw.c integer overflow and resultant buffer overflow via crafted input, leading to a segmentation fault on 32-bit platforms.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/8", + "http://www.openwall.com/lists/oss-security/2022/10/13/3", + "https://access.redhat.com/security/cve/CVE-2021-43618", + "https://bugs.debian.org/994405", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-43618", + "https://gmplib.org/list-archives/gmp-bugs/2021-September/005077.html", + "https://gmplib.org/repo/gmp-6.2/rev/561a9c25298e", + "https://lists.debian.org/debian-lts-announce/2021/12/msg00001.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43618", + "https://security.netapp.com/advisory/ntap-20221111-0001/", + "https://ubuntu.com/security/notices/USN-5672-1", + "https://ubuntu.com/security/notices/USN-5672-2", + "https://www.cve.org/CVERecord?id=CVE-2021-43618" + ], + "PublishedDate": "2021-11-15T04:15:00Z", + "LastModifiedDate": "2022-12-08T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-20231", + "PkgID": "libgnutls30@3.6.7-4+deb10u5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u5", + "FixedVersion": "3.6.7-4+deb10u7", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-20231", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gnutls: Use after free in client key_share extension", + "Description": "A flaw was found in gnutls. A use after free issue in client sending key_share extension may lead to memory corruption and other consequences.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-20231", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://gitlab.com/gnutls/gnutls/-/issues/1151", + "https://linux.oracle.com/cve/CVE-2021-20231.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.apache.org/thread.html/r50661d6f0082709aad9a584431b59ec364f9974b63b07e0800230168@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5d4001031e7790d8c6396c499522b4ed2aab782da87b1a14184793bb@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5f88bed447742fcc5c47bf1c7be965ef450131914a6e1f85feba2779@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r6ac143ba6dd98bd4bf6bf010d46e56e254056459721ba18822d611f7@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r9cbc69e57276413788e90a6ee16c7c034ea4258d31935b70db2bd158@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rcd70a4c88a47a75fd2d5f3ffb7cee8c2a18c713320bd90fdcb57495f@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rf5e1256d870193def4a82ad89ab95e63943a313b5ff0d81aa87e4532@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rfd5273d72d244178441e6904a2f2b41a3268f569e8092ea0b3b2bb20@%3Cissues.spark.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OSLAE6PP33A7VYRYMYMUVB3U6B26GZER/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20231", + "https://security.netapp.com/advisory/ntap-20210416-0005/", + "https://ubuntu.com/security/notices/USN-5029-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20231", + "https://www.gnutls.org/security-new.html#GNUTLS-SA-2021-03-10" + ], + "PublishedDate": "2021-03-12T19:15:00Z", + "LastModifiedDate": "2021-06-01T14:07:00Z" + }, + { + "VulnerabilityID": "CVE-2021-20232", + "PkgID": "libgnutls30@3.6.7-4+deb10u5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u5", + "FixedVersion": "3.6.7-4+deb10u7", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-20232", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gnutls: Use after free in client_send_params in lib/ext/pre_shared_key.c", + "Description": "A flaw was found in gnutls. A use after free issue in client_send_params in lib/ext/pre_shared_key.c may lead to memory corruption and other potential consequences.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-20232", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://gitlab.com/gnutls/gnutls/-/issues/1151", + "https://linux.oracle.com/cve/CVE-2021-20232.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.apache.org/thread.html/r50661d6f0082709aad9a584431b59ec364f9974b63b07e0800230168@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5d4001031e7790d8c6396c499522b4ed2aab782da87b1a14184793bb@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5f88bed447742fcc5c47bf1c7be965ef450131914a6e1f85feba2779@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r6ac143ba6dd98bd4bf6bf010d46e56e254056459721ba18822d611f7@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r9cbc69e57276413788e90a6ee16c7c034ea4258d31935b70db2bd158@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rcd70a4c88a47a75fd2d5f3ffb7cee8c2a18c713320bd90fdcb57495f@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rf5e1256d870193def4a82ad89ab95e63943a313b5ff0d81aa87e4532@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rfd5273d72d244178441e6904a2f2b41a3268f569e8092ea0b3b2bb20@%3Cissues.spark.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OSLAE6PP33A7VYRYMYMUVB3U6B26GZER/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20232", + "https://security.netapp.com/advisory/ntap-20210416-0005/", + "https://ubuntu.com/security/notices/USN-5029-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20232", + "https://www.gnutls.org/security-new.html#GNUTLS-SA-2021-03-10" + ], + "PublishedDate": "2021-03-12T19:15:00Z", + "LastModifiedDate": "2021-05-17T14:30:00Z" + }, + { + "VulnerabilityID": "CVE-2020-24659", + "PkgID": "libgnutls30@3.6.7-4+deb10u5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u5", + "FixedVersion": "3.6.7-4+deb10u7", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-24659", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gnutls: Heap buffer overflow in handshake with no_renegotiation alert sent", + "Description": "An issue was discovered in GnuTLS before 3.6.15. A server can trigger a NULL pointer dereference in a TLS 1.3 client if a no_renegotiation alert is sent with unexpected timing, and then an invalid second handshake occurs. The crash happens in the application's error handling path, where the gnutls_deinit function is called after detecting a handshake failure.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787", + "CWE-476" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-10/msg00054.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-10/msg00060.html", + "https://access.redhat.com/security/cve/CVE-2020-24659", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-24659", + "https://gitlab.com/gnutls/gnutls/-/issues/1071", + "https://linux.oracle.com/cve/CVE-2020-24659.html", + "https://linux.oracle.com/errata/ELSA-2020-5483.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/62BUAI4FQQLG6VTKRT7SUZPGJJ4NASQ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AWN56FDLQQXT2D2YHNI4TYH432TDMQ7N/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-24659", + "https://security.gentoo.org/glsa/202009-01", + "https://security.netapp.com/advisory/ntap-20200911-0006/", + "https://ubuntu.com/security/notices/USN-4491-1", + "https://usn.ubuntu.com/4491-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-24659", + "https://www.gnutls.org/security-new.html#GNUTLS-SA-2020-09-04" + ], + "PublishedDate": "2020-09-04T15:15:00Z", + "LastModifiedDate": "2023-02-27T15:30:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2509", + "VendorIDs": [ + "DLA-3070-1" + ], + "PkgID": "libgnutls30@3.6.7-4+deb10u5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u5", + "FixedVersion": "3.6.7-4+deb10u9", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2509", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Double free during gnutls_pkcs7_verify", + "Description": "A vulnerability found in gnutls. This security flaw happens because of a double free error occurs during verification of pkcs7 signatures in gnutls_pkcs7_verify function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6854", + "https://access.redhat.com/security/cve/CVE-2022-2509", + "https://bugzilla.redhat.com/2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2076626", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108635", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2119770", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2509", + "https://errata.almalinux.org/9/ALSA-2022-6854.html", + "https://errata.rockylinux.org/RLSA-2022:6854", + "https://gnutls.org/security-new.html (GNUTLS-SA-2022-07-07)", + "https://gnutls.org/security-new.html#GNUTLS-SA-2022-07-07", + "https://linux.oracle.com/cve/CVE-2022-2509.html", + "https://linux.oracle.com/errata/ELSA-2022-7105.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00002.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6FL27JS3VM74YEQU7PGB62USO3KSBYZX/", + "https://lists.gnupg.org/pipermail/gnutls-help/2022-July/004746.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2509", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2509", + "https://www.debian.org/security/2022/dsa-5203" + ], + "PublishedDate": "2022-08-01T14:15:00Z", + "LastModifiedDate": "2022-08-19T12:10:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0361", + "VendorIDs": [ + "DLA-3321-1" + ], + "PkgID": "libgnutls30@3.6.7-4+deb10u5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u5", + "FixedVersion": "3.6.7-4+deb10u10", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0361", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing side-channel in the TLS RSA key exchange code", + "Description": "A timing side-channel in the handling of RSA ClientKeyExchange messages was discovered in GnuTLS. This side-channel can be sufficient to recover the key encrypted in the RSA ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption the attacker would need to send a large amount of specially crafted messages to the vulnerable server. By recovering the secret from the ClientKeyExchange message, the attacker would be able to decrypt the application data exchanged over that connection.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:1141", + "https://access.redhat.com/security/cve/CVE-2023-0361", + "https://bugzilla.redhat.com/2162596", + "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + "https://errata.almalinux.org/9/ALSA-2023-1141.html", + "https://errata.rockylinux.org/RLSA-2023:1569", + "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + "https://gitlab.com/gnutls/gnutls/-/issues/1050", + "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + "https://linux.oracle.com/cve/CVE-2023-0361.html", + "https://linux.oracle.com/errata/ELSA-2023-1569.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + "https://security.netapp.com/advisory/ntap-20230324-0005/", + "https://ubuntu.com/security/notices/USN-5901-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0361" + ], + "PublishedDate": "2023-02-15T18:15:00Z", + "LastModifiedDate": "2023-05-23T17:22:00Z" + }, + { + "VulnerabilityID": "CVE-2021-4209", + "VendorIDs": [ + "DLA-3070-1" + ], + "PkgID": "libgnutls30@3.6.7-4+deb10u5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u5", + "FixedVersion": "3.6.7-4+deb10u9", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-4209", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "GnuTLS: Null pointer dereference in MD_UPDATE", + "Description": "A NULL pointer dereference flaw was found in GnuTLS. As Nettle's hash update functions internally call memcpy, providing zero-length input may cause undefined behavior. This flaw leads to a denial of service after authentication in rare circumstances.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-4209", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044156", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-4209", + "https://gitlab.com/gnutls/gnutls/-/commit/3db352734472d851318944db13be73da61300568", + "https://gitlab.com/gnutls/gnutls/-/issues/1306", + "https://gitlab.com/gnutls/gnutls/-/merge_requests/1503", + "https://nvd.nist.gov/vuln/detail/CVE-2021-4209", + "https://security.netapp.com/advisory/ntap-20220915-0005/", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://ubuntu.com/security/notices/USN-5750-1", + "https://www.cve.org/CVERecord?id=CVE-2021-4209" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2022-10-27T16:57:00Z" + }, + { + "VulnerabilityID": "CVE-2011-3389", + "PkgID": "libgnutls30@3.6.7-4+deb10u5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3389", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)", + "Description": "The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a \"BEAST\" attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V2Score": 4.3 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V2Score": 4.3 + } + }, + "References": [ + "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + "http://curl.haxx.se/docs/adv_20120124B.html", + "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + "http://ekoparty.org/2011/juliano-rizzo.php", + "http://eprint.iacr.org/2004/111", + "http://eprint.iacr.org/2006/136", + "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + "http://marc.info/?l=bugtraq\u0026m=132750579901589\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=132872385320240\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=133365109612558\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=133728004526190\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=134254866602253\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=134254957702612\u0026w=2", + "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + "http://osvdb.org/74829", + "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + "http://secunia.com/advisories/45791", + "http://secunia.com/advisories/47998", + "http://secunia.com/advisories/48256", + "http://secunia.com/advisories/48692", + "http://secunia.com/advisories/48915", + "http://secunia.com/advisories/48948", + "http://secunia.com/advisories/49198", + "http://secunia.com/advisories/55322", + "http://secunia.com/advisories/55350", + "http://secunia.com/advisories/55351", + "http://security.gentoo.org/glsa/glsa-201203-02.xml", + "http://security.gentoo.org/glsa/glsa-201406-32.xml", + "http://support.apple.com/kb/HT4999", + "http://support.apple.com/kb/HT5001", + "http://support.apple.com/kb/HT5130", + "http://support.apple.com/kb/HT5281", + "http://support.apple.com/kb/HT5501", + "http://support.apple.com/kb/HT6150", + "http://technet.microsoft.com/security/advisory/2588513", + "http://vnhacker.blogspot.com/2011/09/beast.html", + "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + "http://www.debian.org/security/2012/dsa-2398", + "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + "http://www.ibm.com/developerworks/java/jdk/alerts/", + "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + "http://www.insecure.cl/Beast-SSL.rar", + "http://www.kb.cert.org/vuls/id/864643", + "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + "http://www.opera.com/docs/changelogs/mac/1151/", + "http://www.opera.com/docs/changelogs/mac/1160/", + "http://www.opera.com/docs/changelogs/unix/1151/", + "http://www.opera.com/docs/changelogs/unix/1160/", + "http://www.opera.com/docs/changelogs/windows/1151/", + "http://www.opera.com/docs/changelogs/windows/1160/", + "http://www.opera.com/support/kb/view/1004/", + "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + "http://www.securityfocus.com/bid/49388", + "http://www.securityfocus.com/bid/49778", + "http://www.securitytracker.com/id/1029190", + "http://www.securitytracker.com/id?1025997", + "http://www.securitytracker.com/id?1026103", + "http://www.securitytracker.com/id?1026704", + "http://www.ubuntu.com/usn/USN-1263-1", + "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + "https://access.redhat.com/security/cve/CVE-2011-3389", + "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + "https://bugzilla.novell.com/show_bug.cgi?id=719047", + "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + "https://hermes.opensuse.org/messages/13154861", + "https://hermes.opensuse.org/messages/13155432", + "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + "https://linux.oracle.com/cve/CVE-2011-3389.html", + "https://linux.oracle.com/errata/ELSA-2011-1380.html", + "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + "https://ubuntu.com/security/notices/USN-1263-1", + "https://www.cve.org/CVERecord?id=CVE-2011-3389" + ], + "PublishedDate": "2011-09-06T19:55:00Z", + "LastModifiedDate": "2022-11-29T15:56:00Z" + }, + { + "VulnerabilityID": "CVE-2021-20305", + "VendorIDs": [ + "DSA-4933-1" + ], + "PkgID": "libhogweed4@3.4.1-1", + "PkgName": "libhogweed4", + "InstalledVersion": "3.4.1-1", + "FixedVersion": "3.4.1-1+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-20305", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "nettle: Out of bounds memory access in signature verification", + "Description": "A flaw was found in Nettle in versions before 3.7.2, where several Nettle signature verification functions (GOST DSA, EDDSA \u0026 ECDSA) result in the Elliptic Curve Cryptography point (ECC) multiply function being called with out-of-range scalers, possibly resulting in incorrect results. This flaw allows an attacker to force an invalid signature, causing an assertion failure or possible validation. The highest threat to this vulnerability is to confidentiality, integrity, as well as system availability.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-20305", + "https://bugzilla.redhat.com/show_bug.cgi?id=1942533", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20305", + "https://linux.oracle.com/cve/CVE-2021-20305.html", + "https://linux.oracle.com/errata/ELSA-2021-1206.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MQKWVVMAIDAJ7YAA3VVO32BHLDOH2E63/", + "https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009457.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20305", + "https://security.gentoo.org/glsa/202105-31", + "https://security.netapp.com/advisory/ntap-20211022-0002/", + "https://ubuntu.com/security/notices/USN-4906-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20305", + "https://www.debian.org/security/2021/dsa-4933" + ], + "PublishedDate": "2021-04-05T22:15:00Z", + "LastModifiedDate": "2021-12-06T13:57:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3580", + "VendorIDs": [ + "DSA-4933-1" + ], + "PkgID": "libhogweed4@3.4.1-1", + "PkgName": "libhogweed4", + "InstalledVersion": "3.4.1-1", + "FixedVersion": "3.4.1-1+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3580", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "nettle: Remote crash in RSA decryption via manipulated ciphertext", + "Description": "A flaw was found in the way nettle's RSA decryption functions handled specially crafted ciphertext. An attacker could use this flaw to provide a manipulated ciphertext leading to application crash and denial of service.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-3580", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://linux.oracle.com/cve/CVE-2021-3580.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3580", + "https://security.netapp.com/advisory/ntap-20211104-0006/", + "https://ubuntu.com/security/notices/USN-4990-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3580" + ], + "PublishedDate": "2021-08-05T21:15:00Z", + "LastModifiedDate": "2021-11-26T21:06:00Z" + }, + { + "VulnerabilityID": "CVE-2019-12290", + "PkgID": "libidn2-0@2.0.5-1+deb10u1", + "PkgName": "libidn2-0", + "InstalledVersion": "2.0.5-1+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12290", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specifi ...", + "Description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00008.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00009.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12290", + "https://gitlab.com/libidn/libidn2/commit/241e8f486134793cb0f4a5b0e5817a97883401f5", + "https://gitlab.com/libidn/libidn2/commit/614117ef6e4c60e1950d742e3edf0a0ef8d389de", + "https://gitlab.com/libidn/libidn2/merge_requests/71", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UFT76Y7OSGPZV3EBEHD6ISVUM3DLARM/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KXDKYWFV6N2HHVSE67FFDM7G3FEL2ZNE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ONG3GJRRJO35COPGVJXXSZLU4J5Y42AT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RSI4TI2JTQWQ3YEUX5X36GTVGKO4QKZ5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U6ZXL2RDNQRAHCMKWPOMJFKYJ344X4HL/", + "https://security.gentoo.org/glsa/202003-63", + "https://ubuntu.com/security/notices/USN-4168-1", + "https://usn.ubuntu.com/4168-1/" + ], + "PublishedDate": "2019-10-22T16:15:00Z", + "LastModifiedDate": "2019-10-29T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "libip4tc2@1.8.5-3~bpo10+1", + "PkgName": "libip4tc2", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:98435e81eab0fa9aaec073adcfc8eea85c7c033f002fbb5bcf9ac1c101cd6280", + "DiffID": "sha256:8c9959c71363d26935985a4fce4264517218721ee2676d8c7e4588a2baf8f024" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2019-11360", + "PkgID": "libip4tc2@1.8.5-3~bpo10+1", + "PkgName": "libip4tc2", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:98435e81eab0fa9aaec073adcfc8eea85c7c033f002fbb5bcf9ac1c101cd6280", + "DiffID": "sha256:8c9959c71363d26935985a4fce4264517218721ee2676d8c7e4588a2baf8f024" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11360", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: buffer overflow in iptables-restore", + "Description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:S/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 3.5, + "V3Score": 4.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.2 + } + }, + "References": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360" + ], + "PublishedDate": "2019-07-12T14:15:00Z", + "LastModifiedDate": "2021-07-21T11:39:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "libip6tc2@1.8.5-3~bpo10+1", + "PkgName": "libip6tc2", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:98435e81eab0fa9aaec073adcfc8eea85c7c033f002fbb5bcf9ac1c101cd6280", + "DiffID": "sha256:8c9959c71363d26935985a4fce4264517218721ee2676d8c7e4588a2baf8f024" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2019-11360", + "PkgID": "libip6tc2@1.8.5-3~bpo10+1", + "PkgName": "libip6tc2", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:98435e81eab0fa9aaec073adcfc8eea85c7c033f002fbb5bcf9ac1c101cd6280", + "DiffID": "sha256:8c9959c71363d26935985a4fce4264517218721ee2676d8c7e4588a2baf8f024" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11360", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: buffer overflow in iptables-restore", + "Description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:S/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 3.5, + "V3Score": 4.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.2 + } + }, + "References": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360" + ], + "PublishedDate": "2019-07-12T14:15:00Z", + "LastModifiedDate": "2021-07-21T11:39:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3520", + "VendorIDs": [ + "DSA-4919-1" + ], + "PkgID": "liblz4-1@1.8.3-1", + "PkgName": "liblz4-1", + "InstalledVersion": "1.8.3-1", + "FixedVersion": "1.8.3-1+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3520", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "memory corruption due to an integer overflow bug caused by memmove argument", + "Description": "There's a flaw in lz4. An attacker who submits a crafted file to an application linked with lz4 may be able to trigger an integer overflow, leading to calling of memmove() on a negative size argument, causing an out-of-bounds write and/or a crash. The greatest impact of this flaw is to availability, with some potential impact to confidentiality and integrity as well.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-787", + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 8.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-3520", + "https://bugzilla.redhat.com/show_bug.cgi?id=1954559", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3520", + "https://errata.almalinux.org/8/ALSA-2021-2575.html", + "https://errata.rockylinux.org/RLSA-2021:2575", + "https://github.com/lz4/lz4/pull/972", + "https://linux.oracle.com/cve/CVE-2021-3520.html", + "https://linux.oracle.com/errata/ELSA-2021-2575.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3520", + "https://security.netapp.com/advisory/ntap-20211104-0005/", + "https://ubuntu.com/security/notices/USN-4968-1", + "https://ubuntu.com/security/notices/USN-4968-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3520", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-06-02T13:15:00Z", + "LastModifiedDate": "2023-02-12T23:41:00Z" + }, + { + "VulnerabilityID": "CVE-2019-17543", + "PkgID": "liblz4-1@1.8.3-1", + "PkgName": "liblz4-1", + "InstalledVersion": "1.8.3-1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17543", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "lz4: heap-based buffer overflow in LZ4_write32", + "Description": "LZ4 before 1.9.2 has a heap-based buffer overflow in LZ4_write32 (related to LZ4_compress_destSize), affecting applications that call LZ4_compress_fast with a large input. (This issue can also lead to data corruption.) NOTE: the vendor states \"only a few specific / uncommon usages of the API are at risk.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00069.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00070.html", + "https://access.redhat.com/security/cve/CVE-2019-17543", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=15941", + "https://github.com/lz4/lz4/compare/v1.9.1...v1.9.2", + "https://github.com/lz4/lz4/issues/801", + "https://github.com/lz4/lz4/pull/756", + "https://github.com/lz4/lz4/pull/760", + "https://lists.apache.org/thread.html/25015588b770d67470b7ba7ea49a305d6735dd7f00eabe7d50ec1e17@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/543302d55e2d2da4311994e9b0debdc676bf3fd05e1a2be3407aa2d6@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/793012683dc0fa6819b7c2560e6cf990811014c40c7d75412099c357@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/9ff0606d16be2ab6a81619e1c9e23c3e251756638e36272c8c8b7fa3@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/f0038c4fab2ee25aee849ebeff6b33b3aa89e07ccfb06b5c87b36316@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/f506bc371d4a068d5d84d7361293568f61167d3a1c3e91f0def2d7d3@%3Cdev.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/r0fb226357e7988a241b06b93bab065bcea2eb38658b382e485960e26@%3Cissues.kudu.apache.org%3E", + "https://lists.apache.org/thread.html/r4068ba81066792f2b4d208b39c4c4713c5d4c79bd8cb6c1904af5720@%3Cissues.kudu.apache.org%3E", + "https://lists.apache.org/thread.html/r7bc72200f94298bc9a0e35637f388deb53467ca4b2e2ad1ff66d8960@%3Cissues.kudu.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-17543", + "https://security.netapp.com/advisory/ntap-20210723-0001/", + "https://www.cve.org/CVERecord?id=CVE-2019-17543", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuoct2020.html" + ], + "PublishedDate": "2019-10-14T02:15:00Z", + "LastModifiedDate": "2021-07-23T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1271", + "VendorIDs": [ + "DSA-5123-1" + ], + "PkgID": "liblzma5@5.2.4-1", + "PkgName": "liblzma5", + "InstalledVersion": "5.2.4-1", + "FixedVersion": "5.2.4-1+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1271", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "arbitrary-file-write vulnerability", + "Description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8" + ], + "PublishedDate": "2022-08-31T16:15:00Z", + "LastModifiedDate": "2022-10-07T14:14:00Z" + }, + { + "VulnerabilityID": "CVE-2021-20305", + "VendorIDs": [ + "DSA-4933-1" + ], + "PkgID": "libnettle6@3.4.1-1", + "PkgName": "libnettle6", + "InstalledVersion": "3.4.1-1", + "FixedVersion": "3.4.1-1+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-20305", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "nettle: Out of bounds memory access in signature verification", + "Description": "A flaw was found in Nettle in versions before 3.7.2, where several Nettle signature verification functions (GOST DSA, EDDSA \u0026 ECDSA) result in the Elliptic Curve Cryptography point (ECC) multiply function being called with out-of-range scalers, possibly resulting in incorrect results. This flaw allows an attacker to force an invalid signature, causing an assertion failure or possible validation. The highest threat to this vulnerability is to confidentiality, integrity, as well as system availability.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-20305", + "https://bugzilla.redhat.com/show_bug.cgi?id=1942533", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20305", + "https://linux.oracle.com/cve/CVE-2021-20305.html", + "https://linux.oracle.com/errata/ELSA-2021-1206.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MQKWVVMAIDAJ7YAA3VVO32BHLDOH2E63/", + "https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009457.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20305", + "https://security.gentoo.org/glsa/202105-31", + "https://security.netapp.com/advisory/ntap-20211022-0002/", + "https://ubuntu.com/security/notices/USN-4906-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20305", + "https://www.debian.org/security/2021/dsa-4933" + ], + "PublishedDate": "2021-04-05T22:15:00Z", + "LastModifiedDate": "2021-12-06T13:57:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3580", + "VendorIDs": [ + "DSA-4933-1" + ], + "PkgID": "libnettle6@3.4.1-1", + "PkgName": "libnettle6", + "InstalledVersion": "3.4.1-1", + "FixedVersion": "3.4.1-1+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3580", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "nettle: Remote crash in RSA decryption via manipulated ciphertext", + "Description": "A flaw was found in the way nettle's RSA decryption functions handled specially crafted ciphertext. An attacker could use this flaw to provide a manipulated ciphertext leading to application crash and denial of service.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-3580", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://linux.oracle.com/cve/CVE-2021-3580.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3580", + "https://security.netapp.com/advisory/ntap-20211104-0006/", + "https://ubuntu.com/security/notices/USN-4990-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3580" + ], + "PublishedDate": "2021-08-05T21:15:00Z", + "LastModifiedDate": "2021-11-26T21:06:00Z" + }, + { + "VulnerabilityID": "CVE-2020-14155", + "PkgID": "libpcre3@2:8.39-12", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-12", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-14155", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: Integer overflow when parsing callout numeric arguments", + "Description": "libpcre in PCRE before 8.44 allows an integer overflow via a large number after a (?C substring.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://about.gitlab.com/releases/2020/07/01/security-release-13-1-2-release/", + "https://access.redhat.com/security/cve/CVE-2020-14155", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2020-14155.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2020-14155", + "https://security.netapp.com/advisory/ntap-20221028-0010/", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2020-14155", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.pcre.org/original/changelog.txt" + ], + "PublishedDate": "2020-06-15T17:15:00Z", + "LastModifiedDate": "2022-12-03T03:00:00Z" + }, + { + "VulnerabilityID": "CVE-2017-11164", + "PkgID": "libpcre3@2:8.39-12", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-12", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11164", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c", + "Description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 7.8, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://openwall.com/lists/oss-security/2017/07/11/3", + "http://www.openwall.com/lists/oss-security/2023/04/11/1", + "http://www.openwall.com/lists/oss-security/2023/04/12/1", + "http://www.securityfocus.com/bid/99575", + "https://access.redhat.com/security/cve/CVE-2017-11164", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + "https://www.cve.org/CVERecord?id=CVE-2017-11164" + ], + "PublishedDate": "2017-07-11T03:29:00Z", + "LastModifiedDate": "2023-04-12T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-16231", + "PkgID": "libpcre3@2:8.39-12", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-12", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-16231", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service", + "Description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + "http://seclists.org/fulldisclosure/2018/Dec/33", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101688", + "https://access.redhat.com/security/cve/CVE-2017-16231", + "https://bugs.exim.org/show_bug.cgi?id=2047", + "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + "https://www.cve.org/CVERecord?id=CVE-2017-16231" + ], + "PublishedDate": "2019-03-21T15:59:00Z", + "LastModifiedDate": "2019-04-02T13:55:00Z" + }, + { + "VulnerabilityID": "CVE-2017-7245", + "PkgID": "libpcre3@2:8.39-12", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-12", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7245", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7245", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7245" + ], + "PublishedDate": "2017-03-23T21:59:00Z", + "LastModifiedDate": "2018-08-17T10:29:00Z" + }, + { + "VulnerabilityID": "CVE-2017-7246", + "PkgID": "libpcre3@2:8.39-12", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-12", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7246", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7246", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7246" + ], + "PublishedDate": "2017-03-23T21:59:00Z", + "LastModifiedDate": "2018-08-17T10:29:00Z" + }, + { + "VulnerabilityID": "CVE-2019-20838", + "PkgID": "libpcre3@2:8.39-12", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-12", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20838", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: Buffer over-read in JIT when UTF is disabled and \\X or \\R has fixed quantifier greater than 1", + "Description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://access.redhat.com/security/cve/CVE-2019-20838", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2019-20838.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2019-20838", + "https://www.pcre.org/original/changelog.txt" + ], + "PublishedDate": "2020-06-15T17:15:00Z", + "LastModifiedDate": "2021-09-22T14:22:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9893", + "PkgID": "libseccomp2@2.3.3-4", + "PkgName": "libseccomp2", + "InstalledVersion": "2.3.3-4", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9893", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libseccomp: incorrect generation of syscall filters in libseccomp", + "Description": "libseccomp before 2.4.0 did not correctly generate 64-bit syscall argument comparisons using the arithmetic operators (LT, GT, LE, GE), which might able to lead to bypassing seccomp filters and potential privilege escalations.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 7.3 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00022.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00027.html", + "http://www.paul-moore.com/blog/d/2019/03/libseccomp_v240.html", + "https://access.redhat.com/errata/RHSA-2019:3624", + "https://access.redhat.com/security/cve/CVE-2019-9893", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-9893", + "https://github.com/seccomp/libseccomp/issues/139", + "https://linux.oracle.com/cve/CVE-2019-9893.html", + "https://linux.oracle.com/errata/ELSA-2019-3624.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9893", + "https://seclists.org/oss-sec/2019/q1/179", + "https://security.gentoo.org/glsa/201904-18", + "https://ubuntu.com/security/notices/USN-4001-1", + "https://ubuntu.com/security/notices/USN-4001-2", + "https://usn.ubuntu.com/4001-1/", + "https://usn.ubuntu.com/4001-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-9893", + "https://www.openwall.com/lists/oss-security/2019/03/15/1" + ], + "PublishedDate": "2019-03-21T16:01:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36084", + "PkgID": "libsepol1@2.8-1", + "PkgName": "libsepol1", + "InstalledVersion": "2.8-1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36084", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: use-after-free in __cil_verify_classperms()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36084", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + "https://linux.oracle.com/cve/CVE-2021-36084.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36084" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:16:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36085", + "PkgID": "libsepol1@2.8-1", + "PkgName": "libsepol1", + "InstalledVersion": "2.8-1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36085", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: use-after-free in __cil_verify_classperms()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36085", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + "https://linux.oracle.com/cve/CVE-2021-36085.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36085" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:26:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36086", + "PkgID": "libsepol1@2.8-1", + "PkgName": "libsepol1", + "InstalledVersion": "2.8-1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36086", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free in cil_reset_classpermission()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36086", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + "https://linux.oracle.com/cve/CVE-2021-36086.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36086" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36087", + "PkgID": "libsepol1@2.8-1", + "PkgName": "libsepol1", + "InstalledVersion": "2.8-1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36087", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: heap-based buffer overflow in ebitmap_match_any()", + "Description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36087", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + "https://linux.oracle.com/cve/CVE-2021-36087.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36087" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T14:05:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3711", + "VendorIDs": [ + "DSA-4963-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1d-0+deb10u7", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3711", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: SM2 Decryption Buffer Overflow", + "Description": "In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the \"out\" parameter can be NULL and, on exit, the \"outlen\" parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the \"out\" parameter. A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small. A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer by up to a maximum of 62 bytes altering the contents of other data held after the buffer, possibly changing application behaviour or causing the application to crash. The location of the buffer is application dependent but is typically heap allocated. Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-120" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/security/cve/CVE-2021-3711", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3711", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + "https://github.com/advisories/GHSA-5ww6-px42-wc85", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + "https://rustsec.org/advisories/RUSTSEC-2021-0097.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://security.netapp.com/advisory/ntap-20211022-0003/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3711", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02" + ], + "PublishedDate": "2021-08-24T15:15:00Z", + "LastModifiedDate": "2022-12-06T21:23:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1292", + "VendorIDs": [ + "DSA-5139-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1n-0+deb10u2", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1292", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "c_rehash script allows command injection", + "Description": "The c_rehash script does not properly sanitise shell metacharacters to prevent command injection. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.3 (Affected 3.0.0,3.0.1,3.0.2). Fixed in OpenSSL 1.1.1o (Affected 1.1.1-1.1.1n). Fixed in OpenSSL 1.0.2ze (Affected 1.0.2-1.0.2zd).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-78" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 10, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.7 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-1292", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-953464.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1ad73b4d27bd8c1b369a3cd453681d3a4f1bb9b2", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=548d3f280a6e737673f5b61fce24bb100108dfeb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e5fd1728ef4c7a5bf7c7a7163ca60370460a6e23", + "https://linux.oracle.com/cve/CVE-2022-1292.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VX4KWHPMKYJL6ZLW4M5IU7E5UV5ZWJQU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNU5M7BXMML26G3GPYKFGQYPQDRSNKDD/", + "https://mta.openssl.org/pipermail/openssl-announce/2022-May/000224.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1292", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0011", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220602-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://ubuntu.com/security/notices/USN-5402-1", + "https://ubuntu.com/security/notices/USN-5402-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1292", + "https://www.debian.org/security/2022/dsa-5139", + "https://www.openssl.org/news/secadv/20220503.txt", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-05-03T16:15:00Z", + "LastModifiedDate": "2023-02-14T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2068", + "VendorIDs": [ + "DSA-5169-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1n-0+deb10u3", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2068", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "the c_rehash script allows command injection", + "Description": "In addition to the c_rehash shell command injection identified in CVE-2022-1292, further circumstances where the c_rehash script does not properly sanitise shell metacharacters to prevent command injection were found by code review. When the CVE-2022-1292 was fixed it was not discovered that there are other places in the script where the file names of certificates being hashed were possibly passed to a command executed through the shell. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.4 (Affected 3.0.0,3.0.1,3.0.2,3.0.3). Fixed in OpenSSL 1.1.1p (Affected 1.1.1-1.1.1o). Fixed in OpenSSL 1.0.2zf (Affected 1.0.2-1.0.2ze).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-78" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 10, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.7 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2068", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c9c35870601b4a44d86ddbf512b38df38285cfa", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7a9c027159fe9e1bbc2cd38a8a2914bff0d5abd9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9639817dac8bbbaa64d09efad7464ccc405527c7", + "https://linux.oracle.com/cve/CVE-2022-2068.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6WZZBKUHQFGSKGNXXKICSRPL7AMVW5M5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2068", + "https://security.netapp.com/advisory/ntap-20220707-0008/", + "https://ubuntu.com/security/notices/USN-5488-1", + "https://ubuntu.com/security/notices/USN-5488-2", + "https://www.cve.org/CVERecord?id=CVE-2022-2068", + "https://www.debian.org/security/2022/dsa-5169", + "https://www.openssl.org/news/secadv/20220621.txt" + ], + "PublishedDate": "2022-06-21T15:15:00Z", + "LastModifiedDate": "2023-03-01T16:23:00Z" + }, + { + "VulnerabilityID": "CVE-2021-23840", + "VendorIDs": [ + "DSA-4855-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1d-0+deb10u5", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-23840", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: integer overflow in CipherUpdate", + "Description": "Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate may overflow the output length argument in some cases where the input length is close to the maximum permissable length for an integer on the platform. In such cases the return value from the function call will be 1 (indicating success), but the output length value will be negative. This could cause applications to behave incorrectly or crash. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-23840", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23840", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "https://github.com/advisories/GHSA-qgm6-9472-pwq7", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-23840.html", + "https://linux.oracle.com/errata/ELSA-2021-9561.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23840", + "https://rustsec.org/advisories/RUSTSEC-2021-0057.html", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://ubuntu.com/security/notices/USN-4738-1", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-23840", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10" + ], + "PublishedDate": "2021-02-16T17:15:00Z", + "LastModifiedDate": "2022-08-29T20:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3712", + "VendorIDs": [ + "DSA-4963-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1d-0+deb10u7", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3712", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: Read buffer overruns processing ASN.1 strings", + "Description": "ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own \"d2i\" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the \"data\" and \"length\" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though this is not guaranteed for strings that have been directly constructed. Where an application requests an ASN.1 structure to be printed, and where that ASN.1 structure contains ASN1_STRINGs that have been directly constructed by the application without NUL terminating the \"data\" field, then a read buffer overrun can occur. The same thing can also occur during name constraints processing of certificates (for example if a certificate has been directly constructed by the application instead of loading it via the OpenSSL parsing functions, and the certificate contains non NUL terminated ASN1_STRING structures). It can also occur in the X509_get1_email(), X509_REQ_get1_email() and X509_get1_ocsp() functions. If a malicious actor can cause an application to directly construct an ASN1_STRING and then process it through one of the affected OpenSSL functions then this issue could be hit. This might result in a crash (causing a Denial of Service attack). It could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext). Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k). Fixed in OpenSSL 1.0.2za (Affected 1.0.2-1.0.2y).", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 5.8, + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3712.json", + "https://access.redhat.com/security/cve/CVE-2021-3712", + "https://cert-portal.siemens.com/productcert/pdf/ssa-244969.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3712", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=94d23fcff9b2a7a8368dfe52214d5c2569882c11", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + "https://github.com/advisories/GHSA-q9wj-f4qw-6vfj", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-3712.html", + "https://linux.oracle.com/errata/ELSA-2022-9023.html", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00014.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", + "https://rustsec.org/advisories/RUSTSEC-2021-0098.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://ubuntu.com/security/notices/USN-5051-2", + "https://ubuntu.com/security/notices/USN-5051-3", + "https://ubuntu.com/security/notices/USN-5051-4 (regression only in trusty/esm)", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3712", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02" + ], + "PublishedDate": "2021-08-24T15:15:00Z", + "LastModifiedDate": "2022-12-06T21:23:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0778", + "VendorIDs": [ + "DSA-5103-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1d-0+deb10u8", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0778", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: Infinite loop in BN_mod_sqrt() reachable when parsing certificates", + "Description": "The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).", + "Severity": "HIGH", + "CweIDs": [ + "CWE-835" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/167344/OpenSSL-1.0.2-1.1.1-3.0-BN_mod_sqrt-Infinite-Loop.html", + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "https://access.redhat.com/errata/RHSA-2022:5326", + "https://access.redhat.com/security/cve/CVE-2022-0778", + "https://bugzilla.redhat.com/2062202", + "https://bugzilla.redhat.com/show_bug.cgi?id=2062202", + "https://cert-portal.siemens.com/productcert/pdf/ssa-712929.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0778", + "https://errata.almalinux.org/8/ALSA-2022-5326.html", + "https://errata.rockylinux.org/RLSA-2022:4899", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3118eb64934499d93db3230748a452351d1d9a65", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=380085481c64de749a6dd25cdf0bcf4360b30f83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a466912611aa6cbdf550cd10601390e587451246", + "https://github.com/advisories/GHSA-x3mh-jvjw-3xwx", + "https://linux.oracle.com/cve/CVE-2022-0778.html", + "https://linux.oracle.com/errata/ELSA-2022-9272.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00024.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/323SNN6ZX7PRJJWP2BUAFLPUAE42XWLZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GDB3GQVJPXJE7X5C5JN6JAA4XUDWD6E6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W6K3PR542DXWLEFFMFIDMME4CWMHJRMG/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0002", + "https://rustsec.org/advisories/RUSTSEC-2022-0014.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220321-0002/", + "https://security.netapp.com/advisory/ntap-20220429-0005/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5328-1", + "https://ubuntu.com/security/notices/USN-5328-2", + "https://www.cve.org/CVERecord?id=CVE-2022-0778", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220315.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.tenable.com/security/tns-2022-06", + "https://www.tenable.com/security/tns-2022-07", + "https://www.tenable.com/security/tns-2022-08", + "https://www.tenable.com/security/tns-2022-09" + ], + "PublishedDate": "2022-03-15T17:15:00Z", + "LastModifiedDate": "2022-11-09T20:43:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4450", + "VendorIDs": [ + "DLA-3325-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1n-0+deb10u4", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4450", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "double free after calling PEM_read_bio_ex", + "Description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0215", + "VendorIDs": [ + "DLA-3325-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1n-0+deb10u4", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0215", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free following BIO_new_NDEF", + "Description": "The public API function BIO_new_NDEF is a helper function used for streaming\nASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\nSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\nend user applications.\n\nThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\nBIO onto the front of it to form a BIO chain, and then returns the new head of\nthe BIO chain to the caller. Under certain conditions, for example if a CMS\nrecipient public key is invalid, the new filter BIO is freed and the function\nreturns a NULL result indicating a failure. However, in this case, the BIO chain\nis not properly cleaned up and the BIO passed by the caller still retains\ninternal pointers to the previously freed filter BIO. If the caller then goes on\nto call BIO_pop() on the BIO then a use-after-free will occur. This will most\nlikely result in a crash.\n\n\n\nThis scenario occurs directly in the internal function B64_write_ASN1() which\nmay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\nthe BIO. This internal function is in turn called by the public API functions\nPEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\nSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\n\nOther public API functions that may be impacted by this include\ni2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\ni2d_PKCS7_bio_stream.\n\nThe OpenSSL cms and smime command line applications are similarly affected.\n\n\n\n", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0286", + "VendorIDs": [ + "DLA-3325-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1n-0+deb10u4", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0286", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "X.400 address type confusion in X.509 GeneralName", + "Description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-843" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-03-27T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0464", + "VendorIDs": [ + "DLA-3449-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1n-0+deb10u5", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0464", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "Description": "A security vulnerability has been identified in all supported versions\n\nof OpenSSL related to the verification of X.509 certificate chains\nthat include policy constraints. Attackers may be able to exploit this\nvulnerability by creating a malicious certificate chain that triggers\nexponential use of computational resources, leading to a denial-of-service\n(DoS) attack on affected systems.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://linux.oracle.com/cve/CVE-2023-0464.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt" + ], + "PublishedDate": "2023-03-22T17:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2650", + "VendorIDs": [ + "DLA-3449-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1n-0+deb10u5", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://linux.oracle.com/cve/CVE-2023-2650.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://ubuntu.com/security/notices/USN-6188-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1551", + "VendorIDs": [ + "DSA-4855-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1d-0+deb10u5", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1551", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: Integer overflow in RSAZ modular exponentiation on x86_64", + "Description": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME. Fixed in OpenSSL 1.1.1e (Affected 1.1.1-1.1.1d). Fixed in OpenSSL 1.0.2u (Affected 1.0.2-1.0.2t).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 4.8 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00030.html", + "http://packetstormsecurity.com/files/155754/Slackware-Security-Advisory-openssl-Updates.html", + "https://access.redhat.com/security/cve/CVE-2019-1551", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1551", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=419102400a2811582a7a3d4a4e317d72e5ce0a8f", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=f1c5eea8a817075d31e43f5876993c6710238c98", + "https://github.com/openssl/openssl/pull/10575", + "https://linux.oracle.com/cve/CVE-2019-1551.html", + "https://linux.oracle.com/errata/ELSA-2020-4514.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DDHOAATPWJCXRNFMJ2SASDBBNU5RJONY/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EXDDAOWSAIEFQNBHWYE6PPYFV4QXGMCD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XVEP3LAK4JSPRXFO4QF4GG2IVXADV3SO/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1551", + "https://seclists.org/bugtraq/2019/Dec/39", + "https://seclists.org/bugtraq/2019/Dec/46", + "https://security.gentoo.org/glsa/202004-10", + "https://security.netapp.com/advisory/ntap-20191210-0001/", + "https://ubuntu.com/security/notices/USN-4376-1", + "https://ubuntu.com/security/notices/USN-4504-1", + "https://usn.ubuntu.com/4376-1/", + "https://usn.ubuntu.com/4504-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-1551", + "https://www.debian.org/security/2019/dsa-4594", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20191206.txt", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpujan2021.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.tenable.com/security/tns-2019-09", + "https://www.tenable.com/security/tns-2020-03", + "https://www.tenable.com/security/tns-2020-11", + "https://www.tenable.com/security/tns-2021-10" + ], + "PublishedDate": "2019-12-06T18:15:00Z", + "LastModifiedDate": "2022-04-19T15:36:00Z" + }, + { + "VulnerabilityID": "CVE-2021-23841", + "VendorIDs": [ + "DSA-4855-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1d-0+deb10u5", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-23841", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: NULL pointer dereference in X509_issuer_and_serial_hash()", + "Description": "The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j. Fixed in OpenSSL 1.1.1j (Affected 1.1.1-1.1.1i). Fixed in OpenSSL 1.0.2y (Affected 1.0.2-1.0.2x).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2021/May/67", + "http://seclists.org/fulldisclosure/2021/May/68", + "http://seclists.org/fulldisclosure/2021/May/70", + "https://access.redhat.com/security/cve/CVE-2021-23841", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23841", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "https://github.com/advisories/GHSA-84rm-qf37-fgc2", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44846", + "https://linux.oracle.com/cve/CVE-2021-23841.html", + "https://linux.oracle.com/errata/ELSA-2021-9561.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-23841", + "https://rustsec.org/advisories/RUSTSEC-2021-0058", + "https://rustsec.org/advisories/RUSTSEC-2021-0058.html", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210219-0009/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://support.apple.com/kb/HT212528", + "https://support.apple.com/kb/HT212529", + "https://support.apple.com/kb/HT212534", + "https://ubuntu.com/security/notices/USN-4738-1", + "https://ubuntu.com/security/notices/USN-4745-1", + "https://www.cve.org/CVERecord?id=CVE-2021-23841", + "https://www.debian.org/security/2021/dsa-4855", + "https://www.openssl.org/news/secadv/20210216.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-03", + "https://www.tenable.com/security/tns-2021-09" + ], + "PublishedDate": "2021-02-16T17:15:00Z", + "LastModifiedDate": "2023-01-09T16:41:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3449", + "VendorIDs": [ + "DSA-4875-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1d-0+deb10u6", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3449", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: NULL pointer dereference in signature_algorithms processing", + "Description": "An OpenSSL TLS server may crash if sent a maliciously crafted renegotiation ClientHello message from a client. If a TLSv1.2 renegotiation ClientHello omits the signature_algorithms extension (where it was present in the initial ClientHello), but includes a signature_algorithms_cert extension then a NULL pointer dereference will result, leading to a crash and a denial of service attack. A server is only vulnerable if it has TLSv1.2 and renegotiation enabled (which is the default configuration). OpenSSL TLS clients are not impacted by this issue. All OpenSSL 1.1.1 versions are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue. Fixed in OpenSSL 1.1.1k (Affected 1.1.1-1.1.1j).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/03/27/1", + "http://www.openwall.com/lists/oss-security/2021/03/27/2", + "http://www.openwall.com/lists/oss-security/2021/03/28/3", + "http://www.openwall.com/lists/oss-security/2021/03/28/4", + "https://access.redhat.com/security/cve/CVE-2021-3449", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-772220.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3449", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fb9fa6b51defd48157eeb207f52181f735d96148", + "https://github.com/advisories/GHSA-83mx-573x-5rw9", + "https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44845", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10356", + "https://linux.oracle.com/cve/CVE-2021-3449.html", + "https://linux.oracle.com/errata/ELSA-2021-9151.html", + "https://lists.debian.org/debian-lts-announce/2021/08/msg00029.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CCBFLLVQVILIVGZMBJL3IXZGKWQISYNP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3449", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0013", + "https://rustsec.org/advisories/RUSTSEC-2021-0055", + "https://rustsec.org/advisories/RUSTSEC-2021-0055.html", + "https://security.FreeBSD.org/advisories/FreeBSD-SA-21:07.openssl.asc", + "https://security.gentoo.org/glsa/202103-03", + "https://security.netapp.com/advisory/ntap-20210326-0006/", + "https://security.netapp.com/advisory/ntap-20210513-0002/", + "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-openssl-2021-GHY28dJd", + "https://ubuntu.com/security/notices/USN-4891-1", + "https://ubuntu.com/security/notices/USN-5038-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3449", + "https://www.debian.org/security/2021/dsa-4875", + "https://www.openssl.org/news/secadv/20210325.txt", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuApr2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-05", + "https://www.tenable.com/security/tns-2021-06", + "https://www.tenable.com/security/tns-2021-09", + "https://www.tenable.com/security/tns-2021-10" + ], + "PublishedDate": "2021-03-25T15:15:00Z", + "LastModifiedDate": "2022-08-29T20:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-4160", + "VendorIDs": [ + "DSA-5103-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1d-0+deb10u8", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-4160", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: Carry propagation bug in the MIPS32 and MIPS64 squaring procedure", + "Description": "There is a carry propagation bug in the MIPS32 and MIPS64 squaring procedure. Many EC algorithms are affected, including some of the TLS 1.3 default curves. Impact was not analyzed in detail, because the pre-requisites for attack are considered unlikely and include reusing private keys. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be significant. However, for an attack on TLS to be meaningful, the server would have to share the DH private key among multiple clients, which is no longer an option since CVE-2016-0701. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0.0. It was addressed in the releases of 1.1.1m and 3.0.1 on the 15th of December 2021. For the 1.0.2 release it is addressed in git commit 6fc1aaaf3 that is available to premium support customers only. It will be made available in 1.0.2zc when it is released. The issue only affects OpenSSL on MIPS platforms. Fixed in OpenSSL 3.0.1 (Affected 3.0.0). Fixed in OpenSSL 1.1.1m (Affected 1.1.1-1.1.1l). Fixed in OpenSSL 1.0.2zc-dev (Affected 1.0.2-1.0.2zb).", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-4160", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3bf7b73ea7123045b8f972badc67ed6878e6c37f", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6fc1aaaf303185aa5e483e06bdfae16daa9193a7", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e9e726506cd2a3fd9c0f12daf8cc1fe934c7dddb", + "https://nvd.nist.gov/vuln/detail/CVE-2021-4160", + "https://security.gentoo.org/glsa/202210-02", + "https://www.cve.org/CVERecord?id=CVE-2021-4160", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220128.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-01-28T22:15:00Z", + "LastModifiedDate": "2022-11-09T20:46:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2097", + "VendorIDs": [ + "DLA-3325-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1n-0+deb10u4", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2097", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "AES OCB fails to encrypt some bytes", + "Description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of \"in place\" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt" + ], + "PublishedDate": "2022-07-05T11:15:00Z", + "LastModifiedDate": "2023-04-20T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4304", + "VendorIDs": [ + "DLA-3325-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1n-0+deb10u4", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4304", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing attack in RSA Decryption implementation", + "Description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "Severity": "MEDIUM", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T17:13:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0465", + "VendorIDs": [ + "DLA-3449-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1n-0+deb10u5", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0465", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Invalid certificate policies in leaf certificates are silently ignored", + "Description": "Applications that use a non-default option when verifying certificates may be\nvulnerable to an attack from a malicious CA to circumvent certain checks.\n\nInvalid certificate policies in leaf certificates are silently ignored by\nOpenSSL and other certificate policy checks are skipped for that certificate.\nA malicious CA could use this to deliberately assert invalid certificate policies\nin order to circumvent policy checking on the certificate altogether.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://linux.oracle.com/cve/CVE-2023-0465.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0466", + "VendorIDs": [ + "DLA-3449-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "FixedVersion": "1.1.1n-0+deb10u5", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0466", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Certificate policy check not enabled", + "Description": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://linux.oracle.com/cve/CVE-2023-0466.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2007-6755", + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dual_EC_DRBG: weak pseudo random number generator", + "Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + } + }, + "References": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html" + ], + "PublishedDate": "2013-10-11T22:55:00Z", + "LastModifiedDate": "2022-11-01T14:44:00Z" + }, + { + "VulnerabilityID": "CVE-2010-0928", + "PkgID": "libssl1.1@1.1.1d-0+deb10u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u4", + "Layer": { + "Digest": "sha256:80b8c7bdf1f12d199fce1b1174817ef49b2b8a93b00ddc25c2ddb2b21d13eca1", + "DiffID": "sha256:8cf972e62246924c1d1c9dbb8845b644cccd24f70d08a1149e87db9886462240" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: RSA authentication weakness", + "Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-310" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:N/A:N", + "V2Score": 4 + } + }, + "References": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928" + ], + "PublishedDate": "2010-03-05T19:30:00Z", + "LastModifiedDate": "2017-08-17T01:32:00Z" + }, + { + "VulnerabilityID": "CVE-2018-12886", + "PkgID": "libstdc++6@8.3.0-6", + "PkgName": "libstdc++6", + "InstalledVersion": "8.3.0-6", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12886", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass", + "Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H", + "V3Score": 6.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-12886", + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379\u0026view=markup", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "https://www.cve.org/CVERecord?id=CVE-2018-12886", + "https://www.gnu.org/software/gcc/gcc-8/changes.html" + ], + "PublishedDate": "2019-05-22T19:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2019-15847", + "PkgID": "libstdc++6@8.3.0-6", + "PkgName": "libstdc++6", + "InstalledVersion": "8.3.0-6", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15847", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gcc: POWER9 \"DARN\" RNG intrinsic produces repeated output", + "Description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-331" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + "https://access.redhat.com/security/cve/CVE-2019-15847", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + "https://linux.oracle.com/cve/CVE-2019-15847.html", + "https://linux.oracle.com/errata/ELSA-2020-1864.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + "https://www.cve.org/CVERecord?id=CVE-2019-15847" + ], + "PublishedDate": "2019-09-02T23:15:00Z", + "LastModifiedDate": "2020-09-17T13:38:00Z" + }, + { + "VulnerabilityID": "CVE-2019-3843", + "PkgID": "libsystemd0@241-7~deb10u5", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3843", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: services with DynamicUser can create SUID/SGID binaries", + "Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 4.6, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 4.5 + } + }, + "References": [ + "http://www.securityfocus.com/bid/108116", + "https://access.redhat.com/security/cve/CVE-2019-3843", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3843", + "https://github.com/systemd/systemd-stable/pull/54 (backport for v241-stable)", + "https://linux.oracle.com/cve/CVE-2019-3843.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3843" + ], + "PublishedDate": "2019-04-26T21:29:00Z", + "LastModifiedDate": "2022-01-31T18:53:00Z" + }, + { + "VulnerabilityID": "CVE-2019-3844", + "PkgID": "libsystemd0@241-7~deb10u5", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3844", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries", + "Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-268" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 4.6, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 4.5 + } + }, + "References": [ + "http://www.securityfocus.com/bid/108096", + "https://access.redhat.com/security/cve/CVE-2019-3844", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3844", + "https://linux.oracle.com/cve/CVE-2019-3844.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3844" + ], + "PublishedDate": "2019-04-26T21:29:00Z", + "LastModifiedDate": "2022-01-31T18:52:00Z" + }, + { + "VulnerabilityID": "CVE-2023-26604", + "VendorIDs": [ + "DLA-3377-1" + ], + "PkgID": "libsystemd0@241-7~deb10u5", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u5", + "FixedVersion": "241-7~deb10u9", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-26604", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "privilege escalation via the less pager", + "Description": "systemd before 247 does not adequately block local privilege escalation for some Sudo configurations, e.g., plausible sudoers files in which the \"systemctl status\" command may be executed. Specifically, systemd does not set LESSSECURE to 1, and thus other programs may be launched from the less program. This presents a substantial security risk when running systemctl from Sudo, because less executes as root when the terminal size is too small to show the complete systemctl output.", + "Severity": "HIGH", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-26604", + "https://blog.compass-security.com/2012/10/dangerous-sudoers-entries-part-2-insecure-functionality/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26604", + "https://github.com/systemd/systemd/blob/main/NEWS#L4335-L4340", + "https://github.com/systemd/systemd/issues/5666", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00032.html", + "https://medium.com/@zenmoviefornotification/saidov-maxim-cve-2023-26604-c1232a526ba7", + "https://nvd.nist.gov/vuln/detail/CVE-2023-26604", + "https://security.netapp.com/advisory/ntap-20230505-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-26604" + ], + "PublishedDate": "2023-03-03T16:15:00Z", + "LastModifiedDate": "2023-05-05T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33910", + "VendorIDs": [ + "DSA-4942-1" + ], + "PkgID": "libsystemd0@241-7~deb10u5", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u5", + "FixedVersion": "241-7~deb10u8", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33910", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: uncontrolled allocation on the stack in function unit_name_path_escape leads to crash", + "Description": "basic/unit-name.c in systemd prior to 246.15, 247.8, 248.5, and 249.1 has a Memory Allocation with an Excessive Size Value (involving strdupa and alloca for a pathname controlled by a local attacker) that results in an operating system crash.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33910.json", + "https://access.redhat.com/security/cve/CVE-2021-33910", + "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33910", + "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + "https://linux.oracle.com/cve/CVE-2021-33910.html", + "https://linux.oracle.com/errata/ELSA-2021-2717.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20211104-0008/", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33910", + "https://www.debian.org/security/2021/dsa-4942", + "https://www.openwall.com/lists/oss-security/2021/07/20/2", + "https://www.qualys.com/2021/07/20/cve-2021-33910/denial-of-service-systemd.txt" + ], + "PublishedDate": "2021-07-20T19:15:00Z", + "LastModifiedDate": "2022-06-14T11:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3997", + "PkgID": "libsystemd0@241-7~deb10u5", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3997", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: Uncontrolled recursion in systemd-tmpfiles when removing files", + "Description": "A flaw was found in systemd. An uncontrolled recursion in systemd-tmpfiles may lead to a denial of service at boot time when too many nested directories are created in /tmp.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-3997", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3997", + "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5226-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3997", + "https://www.openwall.com/lists/oss-security/2022/01/10/2" + ], + "PublishedDate": "2022-08-23T20:15:00Z", + "LastModifiedDate": "2023-05-03T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3821", + "PkgID": "libsystemd0@241-7~deb10u5", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in format_timespan() function", + "Description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821" + ], + "PublishedDate": "2022-11-08T22:15:00Z", + "LastModifiedDate": "2023-05-03T12:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4415", + "PkgID": "libsystemd0@241-7~deb10u5", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "Description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3" + ], + "PublishedDate": "2023-01-11T15:15:00Z", + "LastModifiedDate": "2023-02-02T16:19:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4392", + "PkgID": "libsystemd0@241-7~deb10u5", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + } + }, + "References": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392" + ], + "PublishedDate": "2013-10-28T22:55:00Z", + "LastModifiedDate": "2022-01-31T17:49:00Z" + }, + { + "VulnerabilityID": "CVE-2019-20386", + "PkgID": "libsystemd0@241-7~deb10u5", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20386", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: memory leak in button_open() in login/logind-button.c when udev events are received", + "Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.", + "Severity": "LOW", + "CweIDs": [ + "CWE-401" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 2.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 2.4 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + "https://access.redhat.com/security/cve/CVE-2019-20386", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20386", + "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + "https://linux.oracle.com/cve/CVE-2019-20386.html", + "https://linux.oracle.com/errata/ELSA-2020-4553.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + "https://security.netapp.com/advisory/ntap-20200210-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-20386" + ], + "PublishedDate": "2020-01-21T06:15:00Z", + "LastModifiedDate": "2022-01-28T21:27:00Z" + }, + { + "VulnerabilityID": "CVE-2020-13529", + "PkgID": "libsystemd0@241-7~deb10u5", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "Description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "Severity": "LOW", + "CweIDs": [ + "CWE-290" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V2Score": 2.9, + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529" + ], + "PublishedDate": "2021-05-10T16:15:00Z", + "LastModifiedDate": "2022-10-07T02:59:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31437", + "PkgID": "libsystemd0@241-7~deb10u5", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31437", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can modify a seale ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify a sealed log file such that, in some views, not all existing and sealed log messages are displayed. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:16:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31438", + "PkgID": "libsystemd0@241-7~deb10u5", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31438", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can truncate a sea ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can truncate a sealed log file and then resume log sealing such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:16:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31439", + "PkgID": "libsystemd0@241-7~deb10u5", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31439", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can modify the con ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify the contents of past events in a sealed log file and then adjust the file such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-46848", + "VendorIDs": [ + "DLA-3263-1" + ], + "PkgID": "libtasn1-6@4.13-3", + "PkgName": "libtasn1-6", + "InstalledVersion": "4.13-3", + "FixedVersion": "4.13-3+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-46848", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libtasn1: Out-of-bound access in ETYPE_OK", + "Description": "GNU Libtasn1 before 4.19.0 has an ETYPE_OK off-by-one array size check that affects asn1_encode_simple_der.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0343", + "https://access.redhat.com/security/cve/CVE-2021-46848", + "https://bugs.gentoo.org/866237", + "https://bugzilla.redhat.com/2140058", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + "https://errata.almalinux.org/9/ALSA-2023-0343.html", + "https://errata.rockylinux.org/RLSA-2023:0343", + "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + "https://gitlab.com/gnutls/libtasn1/-/issues/32", + "https://linux.oracle.com/cve/CVE-2021-46848.html", + "https://linux.oracle.com/errata/ELSA-2023-0343.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + "https://security.netapp.com/advisory/ntap-20221118-0006/", + "https://ubuntu.com/security/notices/USN-5707-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46848" + ], + "PublishedDate": "2022-10-24T14:15:00Z", + "LastModifiedDate": "2023-01-20T13:55:00Z" + }, + { + "VulnerabilityID": "CVE-2018-1000654", + "PkgID": "libtasn1-6@4.13-3", + "PkgName": "libtasn1-6", + "InstalledVersion": "4.13-3", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1000654", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libtasn1: Infinite loop in _asn1_expand_object_id(ptree) leads to memory exhaustion", + "Description": "GNU Libtasn1-4.13 libtasn1-4.13 version libtasn1-4.13, libtasn1-4.12 contains a DoS, specifically CPU usage will reach 100% when running asn1Paser against the POC due to an issue in _asn1_expand_object_id(p_tree), after a long time, the program will be killed. This attack appears to be exploitable via parsing a crafted file.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 7.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 4 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00018.html", + "http://www.securityfocus.com/bid/105151", + "https://access.redhat.com/security/cve/CVE-2018-1000654", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1000654", + "https://gitlab.com/gnutls/libtasn1/issues/4", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-1000654", + "https://ubuntu.com/security/notices/USN-5352-1", + "https://www.cve.org/CVERecord?id=CVE-2018-1000654" + ], + "PublishedDate": "2018-08-20T19:31:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-3843", + "PkgID": "libudev1@241-7~deb10u5", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3843", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: services with DynamicUser can create SUID/SGID binaries", + "Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 4.6, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 4.5 + } + }, + "References": [ + "http://www.securityfocus.com/bid/108116", + "https://access.redhat.com/security/cve/CVE-2019-3843", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3843", + "https://github.com/systemd/systemd-stable/pull/54 (backport for v241-stable)", + "https://linux.oracle.com/cve/CVE-2019-3843.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3843" + ], + "PublishedDate": "2019-04-26T21:29:00Z", + "LastModifiedDate": "2022-01-31T18:53:00Z" + }, + { + "VulnerabilityID": "CVE-2019-3844", + "PkgID": "libudev1@241-7~deb10u5", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3844", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries", + "Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-268" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 4.6, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 4.5 + } + }, + "References": [ + "http://www.securityfocus.com/bid/108096", + "https://access.redhat.com/security/cve/CVE-2019-3844", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3844", + "https://linux.oracle.com/cve/CVE-2019-3844.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3844" + ], + "PublishedDate": "2019-04-26T21:29:00Z", + "LastModifiedDate": "2022-01-31T18:52:00Z" + }, + { + "VulnerabilityID": "CVE-2023-26604", + "VendorIDs": [ + "DLA-3377-1" + ], + "PkgID": "libudev1@241-7~deb10u5", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u5", + "FixedVersion": "241-7~deb10u9", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-26604", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "privilege escalation via the less pager", + "Description": "systemd before 247 does not adequately block local privilege escalation for some Sudo configurations, e.g., plausible sudoers files in which the \"systemctl status\" command may be executed. Specifically, systemd does not set LESSSECURE to 1, and thus other programs may be launched from the less program. This presents a substantial security risk when running systemctl from Sudo, because less executes as root when the terminal size is too small to show the complete systemctl output.", + "Severity": "HIGH", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-26604", + "https://blog.compass-security.com/2012/10/dangerous-sudoers-entries-part-2-insecure-functionality/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26604", + "https://github.com/systemd/systemd/blob/main/NEWS#L4335-L4340", + "https://github.com/systemd/systemd/issues/5666", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00032.html", + "https://medium.com/@zenmoviefornotification/saidov-maxim-cve-2023-26604-c1232a526ba7", + "https://nvd.nist.gov/vuln/detail/CVE-2023-26604", + "https://security.netapp.com/advisory/ntap-20230505-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-26604" + ], + "PublishedDate": "2023-03-03T16:15:00Z", + "LastModifiedDate": "2023-05-05T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33910", + "VendorIDs": [ + "DSA-4942-1" + ], + "PkgID": "libudev1@241-7~deb10u5", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u5", + "FixedVersion": "241-7~deb10u8", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33910", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: uncontrolled allocation on the stack in function unit_name_path_escape leads to crash", + "Description": "basic/unit-name.c in systemd prior to 246.15, 247.8, 248.5, and 249.1 has a Memory Allocation with an Excessive Size Value (involving strdupa and alloca for a pathname controlled by a local attacker) that results in an operating system crash.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33910.json", + "https://access.redhat.com/security/cve/CVE-2021-33910", + "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33910", + "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + "https://linux.oracle.com/cve/CVE-2021-33910.html", + "https://linux.oracle.com/errata/ELSA-2021-2717.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20211104-0008/", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33910", + "https://www.debian.org/security/2021/dsa-4942", + "https://www.openwall.com/lists/oss-security/2021/07/20/2", + "https://www.qualys.com/2021/07/20/cve-2021-33910/denial-of-service-systemd.txt" + ], + "PublishedDate": "2021-07-20T19:15:00Z", + "LastModifiedDate": "2022-06-14T11:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3997", + "PkgID": "libudev1@241-7~deb10u5", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3997", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: Uncontrolled recursion in systemd-tmpfiles when removing files", + "Description": "A flaw was found in systemd. An uncontrolled recursion in systemd-tmpfiles may lead to a denial of service at boot time when too many nested directories are created in /tmp.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-3997", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3997", + "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5226-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3997", + "https://www.openwall.com/lists/oss-security/2022/01/10/2" + ], + "PublishedDate": "2022-08-23T20:15:00Z", + "LastModifiedDate": "2023-05-03T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3821", + "PkgID": "libudev1@241-7~deb10u5", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in format_timespan() function", + "Description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821" + ], + "PublishedDate": "2022-11-08T22:15:00Z", + "LastModifiedDate": "2023-05-03T12:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4415", + "PkgID": "libudev1@241-7~deb10u5", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "Description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3" + ], + "PublishedDate": "2023-01-11T15:15:00Z", + "LastModifiedDate": "2023-02-02T16:19:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4392", + "PkgID": "libudev1@241-7~deb10u5", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + } + }, + "References": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392" + ], + "PublishedDate": "2013-10-28T22:55:00Z", + "LastModifiedDate": "2022-01-31T17:49:00Z" + }, + { + "VulnerabilityID": "CVE-2019-20386", + "PkgID": "libudev1@241-7~deb10u5", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20386", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: memory leak in button_open() in login/logind-button.c when udev events are received", + "Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.", + "Severity": "LOW", + "CweIDs": [ + "CWE-401" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 2.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 2.4 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + "https://access.redhat.com/security/cve/CVE-2019-20386", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20386", + "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + "https://linux.oracle.com/cve/CVE-2019-20386.html", + "https://linux.oracle.com/errata/ELSA-2020-4553.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + "https://security.netapp.com/advisory/ntap-20200210-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-20386" + ], + "PublishedDate": "2020-01-21T06:15:00Z", + "LastModifiedDate": "2022-01-28T21:27:00Z" + }, + { + "VulnerabilityID": "CVE-2020-13529", + "PkgID": "libudev1@241-7~deb10u5", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "Description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "Severity": "LOW", + "CweIDs": [ + "CWE-290" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V2Score": 2.9, + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529" + ], + "PublishedDate": "2021-05-10T16:15:00Z", + "LastModifiedDate": "2022-10-07T02:59:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31437", + "PkgID": "libudev1@241-7~deb10u5", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31437", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can modify a seale ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify a sealed log file such that, in some views, not all existing and sealed log messages are displayed. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:16:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31438", + "PkgID": "libudev1@241-7~deb10u5", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31438", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can truncate a sea ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can truncate a sealed log file and then resume log sealing such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:16:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31439", + "PkgID": "libudev1@241-7~deb10u5", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u5", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31439", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can modify the con ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify the contents of past events in a sealed log file and then adjust the file such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "libxtables12@1.8.5-3~bpo10+1", + "PkgName": "libxtables12", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:98435e81eab0fa9aaec073adcfc8eea85c7c033f002fbb5bcf9ac1c101cd6280", + "DiffID": "sha256:8c9959c71363d26935985a4fce4264517218721ee2676d8c7e4588a2baf8f024" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2019-11360", + "PkgID": "libxtables12@1.8.5-3~bpo10+1", + "PkgName": "libxtables12", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:98435e81eab0fa9aaec073adcfc8eea85c7c033f002fbb5bcf9ac1c101cd6280", + "DiffID": "sha256:8c9959c71363d26935985a4fce4264517218721ee2676d8c7e4588a2baf8f024" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11360", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: buffer overflow in iptables-restore", + "Description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:S/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 3.5, + "V3Score": 4.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.2 + } + }, + "References": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360" + ], + "PublishedDate": "2019-07-12T14:15:00Z", + "LastModifiedDate": "2021-07-21T11:39:00Z" + }, + { + "VulnerabilityID": "CVE-2021-24031", + "VendorIDs": [ + "DSA-4850-1" + ], + "PkgID": "libzstd1@1.3.8+dfsg-3", + "PkgName": "libzstd1", + "InstalledVersion": "1.3.8+dfsg-3", + "FixedVersion": "1.3.8+dfsg-3+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-24031", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "zstd: adds read permissions to files while being compressed or uncompressed", + "Description": "In the Zstandard command-line utility prior to v1.4.1, output files were created with default permissions. Correct file permissions (matching the input) would only be set at completion time. Output files could therefore be readable or writable to unintended parties.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-276" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-24031", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=981404", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-24031", + "https://github.com/facebook/zstd/issues/1630", + "https://nvd.nist.gov/vuln/detail/CVE-2021-24031", + "https://ubuntu.com/security/notices/USN-4760-1", + "https://ubuntu.com/security/notices/USN-5720-1", + "https://www.cve.org/CVERecord?id=CVE-2021-24031", + "https://www.facebook.com/security/advisories/cve-2021-24031" + ], + "PublishedDate": "2021-03-04T21:15:00Z", + "LastModifiedDate": "2021-04-14T15:28:00Z" + }, + { + "VulnerabilityID": "CVE-2021-24032", + "VendorIDs": [ + "DSA-4859-1" + ], + "PkgID": "libzstd1@1.3.8+dfsg-3", + "PkgName": "libzstd1", + "InstalledVersion": "1.3.8+dfsg-3", + "FixedVersion": "1.3.8+dfsg-3+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-24032", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "zstd: Race condition allows attacker to access world-readable destination file", + "Description": "Beginning in v1.4.1 and prior to v1.4.9, due to an incomplete fix for CVE-2021-24031, the Zstandard command-line utility created output files with default permissions and restricted those permissions immediately afterwards. Output files could therefore momentarily be readable or writable to unintended parties.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-276" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 4.7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-24032", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=982519", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-24032", + "https://github.com/facebook/zstd/issues/2491", + "https://nvd.nist.gov/vuln/detail/CVE-2021-24032", + "https://ubuntu.com/security/notices/USN-4760-1", + "https://ubuntu.com/security/notices/USN-5720-1", + "https://www.cve.org/CVERecord?id=CVE-2021-24032", + "https://www.facebook.com/security/advisories/cve-2021-24032" + ], + "PublishedDate": "2021-03-04T21:15:00Z", + "LastModifiedDate": "2021-04-28T20:04:00Z" + }, + { + "VulnerabilityID": "CVE-2007-5686", + "PkgID": "login@1:4.5-1.1", + "PkgName": "login", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-264" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N", + "V2Score": 4.9 + } + }, + "References": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "PublishedDate": "2007-10-28T17:08:00Z", + "LastModifiedDate": "2018-10-15T21:45:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4235", + "PkgID": "login@1:4.5-1.1", + "PkgName": "login", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "Severity": "LOW", + "CweIDs": [ + "CWE-367" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 3.3, + "V3Score": 4.7 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 3.7, + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235" + ], + "PublishedDate": "2019-12-03T15:15:00Z", + "LastModifiedDate": "2023-02-13T00:28:00Z" + }, + { + "VulnerabilityID": "CVE-2018-7169", + "PkgID": "login@1:4.5-1.1", + "PkgName": "login", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7169", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation", + "Description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-7169", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7169", + "https://github.com/shadow-maint/shadow/pull/97", + "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + "https://security.gentoo.org/glsa/201805-09", + "https://ubuntu.com/security/notices/USN-5254-1", + "https://www.cve.org/CVERecord?id=CVE-2018-7169" + ], + "PublishedDate": "2018-02-15T20:29:00Z", + "LastModifiedDate": "2019-10-03T00:03:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19882", + "PkgID": "login@1:4.5-1.1", + "PkgName": "login", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.9, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882" + ], + "PublishedDate": "2019-12-18T16:15:00Z", + "LastModifiedDate": "2020-08-25T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29383", + "PkgID": "login@1:4.5-1.1", + "PkgName": "login", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Improper input validation in shadow-utils package utility chfn", + "Description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that \"cat /etc/passwd\" shows a rogue user account.", + "Severity": "LOW", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797" + ], + "PublishedDate": "2023-04-14T22:15:00Z", + "LastModifiedDate": "2023-04-24T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2007-5686", + "PkgID": "passwd@1:4.5-1.1", + "PkgName": "passwd", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-264" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N", + "V2Score": 4.9 + } + }, + "References": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "PublishedDate": "2007-10-28T17:08:00Z", + "LastModifiedDate": "2018-10-15T21:45:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4235", + "PkgID": "passwd@1:4.5-1.1", + "PkgName": "passwd", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "Severity": "LOW", + "CweIDs": [ + "CWE-367" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 3.3, + "V3Score": 4.7 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 3.7, + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235" + ], + "PublishedDate": "2019-12-03T15:15:00Z", + "LastModifiedDate": "2023-02-13T00:28:00Z" + }, + { + "VulnerabilityID": "CVE-2018-7169", + "PkgID": "passwd@1:4.5-1.1", + "PkgName": "passwd", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7169", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation", + "Description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-7169", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7169", + "https://github.com/shadow-maint/shadow/pull/97", + "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + "https://security.gentoo.org/glsa/201805-09", + "https://ubuntu.com/security/notices/USN-5254-1", + "https://www.cve.org/CVERecord?id=CVE-2018-7169" + ], + "PublishedDate": "2018-02-15T20:29:00Z", + "LastModifiedDate": "2019-10-03T00:03:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19882", + "PkgID": "passwd@1:4.5-1.1", + "PkgName": "passwd", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.9, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882" + ], + "PublishedDate": "2019-12-18T16:15:00Z", + "LastModifiedDate": "2020-08-25T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29383", + "PkgID": "passwd@1:4.5-1.1", + "PkgName": "passwd", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Improper input validation in shadow-utils package utility chfn", + "Description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that \"cat /etc/passwd\" shows a rogue user account.", + "Severity": "LOW", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797" + ], + "PublishedDate": "2023-04-14T22:15:00Z", + "LastModifiedDate": "2023-04-24T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2020-16156", + "PkgID": "perl-base@5.28.1-6+deb10u1", + "PkgName": "perl-base", + "InstalledVersion": "5.28.1-6+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-16156", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "perl-CPAN: Bypass of verification of signatures in CHECKSUMS files", + "Description": "CPAN 2.28 allows Signature Verification Bypass.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + "https://access.redhat.com/security/cve/CVE-2020-16156", + "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + "https://ubuntu.com/security/notices/USN-5689-1", + "https://ubuntu.com/security/notices/USN-5689-2", + "https://www.cve.org/CVERecord?id=CVE-2020-16156" + ], + "PublishedDate": "2021-12-13T18:15:00Z", + "LastModifiedDate": "2022-04-01T13:26:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31484", + "PkgID": "perl-base@5.28.1-6+deb10u1", + "PkgName": "perl-base", + "InstalledVersion": "5.28.1-6+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31484", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "CPAN.pm before 2.35 does not verify TLS certificates when downloading ...", + "Description": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + "https://github.com/andk/cpanpm/pull/175", + "https://metacpan.org/dist/CPAN/changes", + "https://ubuntu.com/security/notices/USN-6112-1", + "https://ubuntu.com/security/notices/USN-6112-2", + "https://www.openwall.com/lists/oss-security/2023/04/18/14" + ], + "PublishedDate": "2023-04-29T00:15:00Z", + "LastModifiedDate": "2023-05-08T17:11:00Z" + }, + { + "VulnerabilityID": "CVE-2011-4116", + "PkgID": "perl-base@5.28.1-6+deb10u1", + "PkgName": "perl-base", + "InstalledVersion": "5.28.1-6+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-4116", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "perl: File::Temp insecure temporary file handling", + "Description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N", + "V2Score": 1.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2011/11/04/2", + "http://www.openwall.com/lists/oss-security/2011/11/04/4", + "https://access.redhat.com/security/cve/CVE-2011-4116", + "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + "https://seclists.org/oss-sec/2011/q4/238", + "https://www.cve.org/CVERecord?id=CVE-2011-4116" + ], + "PublishedDate": "2020-01-31T18:15:00Z", + "LastModifiedDate": "2020-02-05T22:10:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31486", + "PkgID": "perl-base@5.28.1-6+deb10u1", + "PkgName": "perl-base", + "InstalledVersion": "5.28.1-6+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31486", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTP::Tiny before 0.083, a Perl core module since 5.13.9 and available ...", + "Description": "HTTP::Tiny before 0.083, a Perl core module since 5.13.9 and available standalone on CPAN, has an insecure default TLS configuration where users must opt in to verify certificates.", + "Severity": "LOW", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://github.com/chansen/p5-http-tiny/pull/153", + "https://hackeriet.github.io/cpan-http-tiny-overview/", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + "https://www.openwall.com/lists/oss-security/2023/05/03/4", + "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/" + ], + "PublishedDate": "2023-04-29T00:15:00Z", + "LastModifiedDate": "2023-06-21T18:19:00Z" + }, + { + "VulnerabilityID": "CVE-2005-2541", + "PkgID": "tar@1.30+dfsg-6", + "PkgName": "tar", + "InstalledVersion": "1.30+dfsg-6", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2005-2541", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tar: does not properly warn the user when extracting setuid or setgid files", + "Description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V2Score": 10 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://marc.info/?l=bugtraq\u0026m=112327628230258\u0026w=2", + "https://access.redhat.com/security/cve/CVE-2005-2541", + "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + "https://www.cve.org/CVERecord?id=CVE-2005-2541" + ], + "PublishedDate": "2005-08-10T04:00:00Z", + "LastModifiedDate": "2021-06-18T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9923", + "PkgID": "tar@1.30+dfsg-6", + "PkgName": "tar", + "InstalledVersion": "1.30+dfsg-6", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9923", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tar: null-pointer dereference in pax_decode_header in sparse.c", + "Description": "pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://git.savannah.gnu.org/cgit/tar.git/commit/?id=cb07844454d8cc9fb21f53ace75975f91185a120", + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00077.html", + "http://savannah.gnu.org/bugs/?55369", + "https://access.redhat.com/security/cve/CVE-2019-9923", + "https://bugs.launchpad.net/ubuntu/+source/tar/+bug/1810241", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-9923", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9923", + "https://ubuntu.com/security/notices/USN-4692-1", + "https://www.cve.org/CVERecord?id=CVE-2019-9923" + ], + "PublishedDate": "2019-03-22T08:29:00Z", + "LastModifiedDate": "2021-06-29T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-20193", + "PkgID": "tar@1.30+dfsg-6", + "PkgName": "tar", + "InstalledVersion": "1.30+dfsg-6", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-20193", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tar: Memory leak in read_header() in list.c", + "Description": "A flaw was found in the src/list.c of tar 1.33 and earlier. This flaw allows an attacker who can submit a crafted input file to tar to cause uncontrolled consumption of memory. The highest threat from this vulnerability is to system availability.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125", + "CWE-401" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-20193", + "https://bugzilla.redhat.com/show_bug.cgi?id=1917565", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20193", + "https://git.savannah.gnu.org/cgit/tar.git/commit/?id=d9d4435692150fa8ff68e1b1a473d187cc3fd777", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20193", + "https://savannah.gnu.org/bugs/?59897", + "https://security.gentoo.org/glsa/202105-29", + "https://ubuntu.com/security/notices/USN-5329-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20193" + ], + "PublishedDate": "2021-03-26T17:15:00Z", + "LastModifiedDate": "2021-06-03T18:53:00Z" + }, + { + "VulnerabilityID": "CVE-2022-48303", + "PkgID": "tar@1.30+dfsg-6", + "PkgName": "tar", + "InstalledVersion": "1.30+dfsg-6", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-48303", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "heap buffer overflow at from_header() in list.c via specially crafted checksum", + "Description": "GNU Tar through 1.34 has a one-byte out-of-bounds read that results in use of uninitialized memory for a conditional jump. Exploitation to change the flow of control has not been demonstrated. The issue occurs in from_header in list.c via a V7 archive in which mtime has approximately 11 whitespace characters.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0959", + "https://access.redhat.com/security/cve/CVE-2022-48303", + "https://bugzilla.redhat.com/2149722", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + "https://errata.almalinux.org/9/ALSA-2023-0959.html", + "https://errata.rockylinux.org/RLSA-2023:0959", + "https://linux.oracle.com/cve/CVE-2022-48303.html", + "https://linux.oracle.com/errata/ELSA-2023-0959.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + "https://savannah.gnu.org/bugs/?62387", + "https://savannah.gnu.org/patch/?10307", + "https://ubuntu.com/security/notices/USN-5900-1", + "https://ubuntu.com/security/notices/USN-5900-2", + "https://www.cve.org/CVERecord?id=CVE-2022-48303" + ], + "PublishedDate": "2023-01-30T04:15:00Z", + "LastModifiedDate": "2023-05-30T17:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-37434", + "VendorIDs": [ + "DLA-3103-1" + ], + "PkgID": "zlib1g@1:1.2.11.dfsg-1", + "PkgName": "zlib1g", + "InstalledVersion": "1:1.2.11.dfsg-1", + "FixedVersion": "1:1.2.11.dfsg-1+deb10u2", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-37434", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "heap-based buffer over-read and overflow in inflate() in inflate.c via a large gzip header extra field", + "Description": "zlib through 1.2.12 has a heap-based buffer over-read or buffer overflow in inflate in inflate.c via a large gzip header extra field. NOTE: only applications that call inflateGetHeader are affected. Some common applications bundle the affected zlib source code but may be unable to call inflateGetHeader (e.g., see the nodejs/node reference).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/37", + "http://seclists.org/fulldisclosure/2022/Oct/38", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/42", + "http://www.openwall.com/lists/oss-security/2022/08/05/2", + "http://www.openwall.com/lists/oss-security/2022/08/09/1", + "https://access.redhat.com/errata/RHSA-2022:8291", + "https://access.redhat.com/security/cve/CVE-2022-37434", + "https://bugzilla.redhat.com/2116639", + "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + "https://errata.almalinux.org/9/ALSA-2022-8291.html", + "https://errata.rockylinux.org/RLSA-2022:8291", + "https://github.com/curl/curl/issues/9271", + "https://github.com/ivd38/zlib_overflow", + "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + "https://linux.oracle.com/cve/CVE-2022-37434.html", + "https://linux.oracle.com/errata/ELSA-2023-1095.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + "https://security.netapp.com/advisory/ntap-20220901-0005/", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://support.apple.com/kb/HT213488", + "https://support.apple.com/kb/HT213489", + "https://support.apple.com/kb/HT213490", + "https://support.apple.com/kb/HT213491", + "https://support.apple.com/kb/HT213493", + "https://support.apple.com/kb/HT213494", + "https://ubuntu.com/security/notices/USN-5570-1", + "https://ubuntu.com/security/notices/USN-5570-2", + "https://ubuntu.com/security/notices/USN-5573-1", + "https://www.cve.org/CVERecord?id=CVE-2022-37434", + "https://www.debian.org/security/2022/dsa-5218" + ], + "PublishedDate": "2022-08-05T07:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-25032", + "VendorIDs": [ + "DSA-5111-1" + ], + "PkgID": "zlib1g@1:1.2.11.dfsg-1", + "PkgName": "zlib1g", + "InstalledVersion": "1:1.2.11.dfsg-1", + "FixedVersion": "1:1.2.11.dfsg-1+deb10u1", + "Layer": { + "Digest": "sha256:1813d21adc01d6699dcebdaf72ab66d2839755b536cedba34251fb39a9e9f02b", + "DiffID": "sha256:13fb781d48d3bc871ae249a8c4ccd8b3cb11e4af6ea3c97da70c1ed55d446591" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-25032", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "A flaw found in zlib when compressing (not decompressing) certain inputs", + "Description": "zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H", + "V3Score": 8.2 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "http://www.openwall.com/lists/oss-security/2022/03/25/2", + "http://www.openwall.com/lists/oss-security/2022/03/26/1", + "https://access.redhat.com/errata/RHSA-2022:8420", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + "https://access.redhat.com/security/cve/CVE-2018-25032", + "https://bugzilla.redhat.com/2067945", + "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + "https://errata.almalinux.org/9/ALSA-2022-8420.html", + "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + "https://github.com/madler/zlib/issues/605", + "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + "https://linux.oracle.com/cve/CVE-2018-25032.html", + "https://linux.oracle.com/errata/ELSA-2022-9565.html", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + "https://security.gentoo.org/glsa/202210-42", + "https://security.netapp.com/advisory/ntap-20220526-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5355-1", + "https://ubuntu.com/security/notices/USN-5355-2", + "https://ubuntu.com/security/notices/USN-5359-1", + "https://ubuntu.com/security/notices/USN-5359-2", + "https://ubuntu.com/security/notices/USN-5739-1", + "https://www.cve.org/CVERecord?id=CVE-2018-25032", + "https://www.debian.org/security/2022/dsa-5111", + "https://www.openwall.com/lists/oss-security/2022/03/24/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/3", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-03-25T09:15:00Z", + "LastModifiedDate": "2023-04-27T17:50:00Z" + } + ] + }, + { + "Target": "bin/kindnetd", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2021-3121", + "PkgName": "github.com/gogo/protobuf", + "InstalledVersion": "v1.3.1", + "FixedVersion": "1.3.2", + "Layer": { + "Digest": "sha256:e590b4195a9ede4771fe2a1d34f2c29fb584dba4b5adbeb3de1588681fd548b2", + "DiffID": "sha256:0857283c961fe629074c789a752293cceedb201a43f758ac97a5150f660cc9cf" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3121", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "gogo/protobuf: plugin/unmarshal/unmarshal.go lacks certain index validation", + "Description": "An issue was discovered in GoGo Protobuf before 1.3.2. plugin/unmarshal/unmarshal.go lacks certain index validation, aka the \"skippy peanut butter\" issue.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-129" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 8.6 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V2Score": 7.5, + "V3Score": 8.6 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 8.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-3121", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3121", + "https://discuss.hashicorp.com/t/hcsec-2021-23-consul-exposed-to-denial-of-service-in-gogo-protobuf-dependency/29025", + "https://github.com/advisories/GHSA-c3h9-896r-86jm", + "https://github.com/gogo/protobuf/commit/b03c65ea87cdc3521ede29f62fe3ce239267c1bc", + "https://github.com/gogo/protobuf/compare/v1.3.1...v1.3.2", + "https://lists.apache.org/thread.html/r68032132c0399c29d6cdc7bd44918535da54060a10a12b1591328bff@%3Cnotifications.skywalking.apache.org%3E", + "https://lists.apache.org/thread.html/r88d69555cb74a129a7bf84838073b61259b4a3830190e05a3b87994e@%3Ccommits.pulsar.apache.org%3E", + "https://lists.apache.org/thread.html/rc1e9ff22c5641d73701ba56362fb867d40ed287cca000b131dcf4a44@%3Ccommits.pulsar.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3121", + "https://pkg.go.dev/vuln/GO-2021-0053", + "https://security.netapp.com/advisory/ntap-20210219-0006/", + "https://www.cve.org/CVERecord?id=CVE-2021-3121" + ], + "PublishedDate": "2021-01-11T06:15:00Z", + "LastModifiedDate": "2022-04-01T15:41:00Z" + }, + { + "VulnerabilityID": "CVE-2020-29652", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20201002170205-7f63de1d35b0", + "FixedVersion": "0.0.0-20201216223049-8b5274cf687f", + "Layer": { + "Digest": "sha256:e590b4195a9ede4771fe2a1d34f2c29fb584dba4b5adbeb3de1588681fd548b2", + "DiffID": "sha256:0857283c961fe629074c789a752293cceedb201a43f758ac97a5150f660cc9cf" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-29652", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: crypto/ssh: crafted authentication request can lead to nil pointer dereference", + "Description": "A nil pointer dereference in the golang.org/x/crypto/ssh component through v0.0.0-20201203163018-be400aefbc4c for Go allows remote attackers to cause a denial of service against SSH servers.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-29652", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-29652", + "https://errata.almalinux.org/8/ALSA-2021-1796.html", + "https://github.com/advisories/GHSA-3vm4-22fp-5rfm", + "https://go-review.googlesource.com/c/crypto/+/278852", + "https://go.dev/cl/278852", + "https://go.googlesource.com/crypto/+/8b5274cf687fd9316b4108863654cc57385531e8", + "https://groups.google.com/g/golang-announce/c/ouZIlBimOsE?pli=1", + "https://linux.oracle.com/cve/CVE-2020-29652.html", + "https://linux.oracle.com/errata/ELSA-2021-1796.html", + "https://lists.apache.org/thread.html/r68032132c0399c29d6cdc7bd44918535da54060a10a12b1591328bff@%3Cnotifications.skywalking.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2020-29652", + "https://pkg.go.dev/vuln/GO-2021-0227", + "https://www.cve.org/CVERecord?id=CVE-2020-29652" + ], + "PublishedDate": "2020-12-17T05:15:00Z", + "LastModifiedDate": "2022-10-04T14:52:00Z" + }, + { + "VulnerabilityID": "CVE-2021-43565", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20201002170205-7f63de1d35b0", + "FixedVersion": "0.0.0-20211202192323-5770296d904e", + "Layer": { + "Digest": "sha256:e590b4195a9ede4771fe2a1d34f2c29fb584dba4b5adbeb3de1588681fd548b2", + "DiffID": "sha256:0857283c961fe629074c789a752293cceedb201a43f758ac97a5150f660cc9cf" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-43565", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang.org/x/crypto: empty plaintext packet causes panic", + "Description": "The x/crypto/ssh package before 0.0.0-20211202192323-5770296d904e of golang.org/x/crypto allows an attacker to panic an SSH server.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-43565", + "https://github.com/advisories/GHSA-gwc9-m7rh-j2ww", + "https://go.dev/cl/368814/", + "https://go.dev/issues/49932", + "https://groups.google.com/forum/#!forum/golang-announce", + "https://groups.google.com/g/golang-announce/c/2AR1sKiM-Qs", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43565", + "https://pkg.go.dev/vuln/GO-2022-0968", + "https://www.cve.org/CVERecord?id=CVE-2021-43565" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-09-09T03:38:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27191", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20201002170205-7f63de1d35b0", + "FixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "Layer": { + "Digest": "sha256:e590b4195a9ede4771fe2a1d34f2c29fb584dba4b5adbeb3de1588681fd548b2", + "DiffID": "sha256:0857283c961fe629074c789a752293cceedb201a43f758ac97a5150f660cc9cf" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27191", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "crash in a golang.org/x/crypto/ssh server", + "Description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191" + ], + "PublishedDate": "2022-03-18T07:15:00Z", + "LastModifiedDate": "2022-10-26T17:52:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33194", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20201110031124-69a78807bb2b", + "FixedVersion": "0.0.0-20210520170846-37e1c6afe023", + "Layer": { + "Digest": "sha256:e590b4195a9ede4771fe2a1d34f2c29fb584dba4b5adbeb3de1588681fd548b2", + "DiffID": "sha256:0857283c961fe629074c789a752293cceedb201a43f758ac97a5150f660cc9cf" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33194", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: x/net/html: infinite loop in ParseFragment", + "Description": "golang.org/x/net before v0.0.0-20210520170846-37e1c6afe023 allows attackers to cause a denial of service (infinite loop) via crafted ParseFragment input.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-835" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-33194", + "https://github.com/advisories/GHSA-83g2-8m93-v3w7", + "https://github.com/golang/net/commit/37e1c6afe02340126705deced573a85ab75209d7", + "https://go.dev/cl/311090", + "https://go.dev/issue/46288", + "https://go.googlesource.com/net/+/37e1c6afe02340126705deced573a85ab75209d7", + "https://groups.google.com/g/golang-announce/c/wPunbCPkWUg", + "https://groups.google.com/g/golang-dev/c/28x0nthP-c8/m/KqWVTjsnBAAJ", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4CHKSFMHZVOBCZSSVRE3UEYNKARTBMTM/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33194", + "https://pkg.go.dev/vuln/GO-2021-0238", + "https://www.cve.org/CVERecord?id=CVE-2021-33194" + ], + "PublishedDate": "2021-05-26T15:15:00Z", + "LastModifiedDate": "2022-06-03T19:29:00Z" + }, + { + "VulnerabilityID": "CVE-2021-44716", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20201110031124-69a78807bb2b", + "FixedVersion": "0.0.0-20211209124913-491a49abca63", + "Layer": { + "Digest": "sha256:e590b4195a9ede4771fe2a1d34f2c29fb584dba4b5adbeb3de1588681fd548b2", + "DiffID": "sha256:0857283c961fe629074c789a752293cceedb201a43f758ac97a5150f660cc9cf" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-44716", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: net/http: limit growth of header canonicalization cache", + "Description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716" + ], + "PublishedDate": "2022-01-01T05:15:00Z", + "LastModifiedDate": "2023-04-20T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20201110031124-69a78807bb2b", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:e590b4195a9ede4771fe2a1d34f2c29fb584dba4b5adbeb3de1588681fd548b2", + "DiffID": "sha256:0857283c961fe629074c789a752293cceedb201a43f758ac97a5150f660cc9cf" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20201110031124-69a78807bb2b", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:e590b4195a9ede4771fe2a1d34f2c29fb584dba4b5adbeb3de1588681fd548b2", + "DiffID": "sha256:0857283c961fe629074c789a752293cceedb201a43f758ac97a5150f660cc9cf" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2021-31525", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20201110031124-69a78807bb2b", + "FixedVersion": "0.0.0-20210428140749-89ef3d95e781", + "Layer": { + "Digest": "sha256:e590b4195a9ede4771fe2a1d34f2c29fb584dba4b5adbeb3de1588681fd548b2", + "DiffID": "sha256:0857283c961fe629074c789a752293cceedb201a43f758ac97a5150f660cc9cf" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-31525", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: net/http: panic in ReadRequest and ReadResponse when reading a very large header", + "Description": "net/http in Go before 1.15.12 and 1.16.x before 1.16.4 allows remote attackers to cause a denial of service (panic) via a large header to ReadRequest or ReadResponse. Server, Transport, and Client can each be affected in some configurations.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "nvd": { + "V2Vector": "AV:N/AC:H/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.6, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-31525", + "https://github.com/advisories/GHSA-h86h-8ppg-mxmh", + "https://github.com/golang/go/issues/45710", + "https://go.dev/cl/313069", + "https://go.dev/issue/45710", + "https://go.googlesource.com/net/+/89ef3d95e781148a0951956029c92a211477f7f9", + "https://groups.google.com/g/golang-announce/c/cu9SP4eSXMc", + "https://linux.oracle.com/cve/CVE-2021-31525.html", + "https://linux.oracle.com/errata/ELSA-2021-3076.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ISRZZ6NY5R2TBYE72KZFOCO25TEUQTBF/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-31525", + "https://pkg.go.dev/vuln/GO-2022-0236", + "https://security.gentoo.org/glsa/202208-02", + "https://www.cve.org/CVERecord?id=CVE-2021-31525" + ], + "PublishedDate": "2021-05-27T13:15:00Z", + "LastModifiedDate": "2022-11-09T03:32:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20201110031124-69a78807bb2b", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:e590b4195a9ede4771fe2a1d34f2c29fb584dba4b5adbeb3de1588681fd548b2", + "DiffID": "sha256:0857283c961fe629074c789a752293cceedb201a43f758ac97a5150f660cc9cf" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29526", + "PkgName": "golang.org/x/sys", + "InstalledVersion": "v0.0.0-20201112073958-5cba982894dd", + "FixedVersion": "0.0.0-20220412211240-33da011f77ad", + "Layer": { + "Digest": "sha256:e590b4195a9ede4771fe2a1d34f2c29fb584dba4b5adbeb3de1588681fd548b2", + "DiffID": "sha256:0857283c961fe629074c789a752293cceedb201a43f758ac97a5150f660cc9cf" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29526", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "faccessat checks wrong group", + "Description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526" + ], + "PublishedDate": "2022-06-23T17:15:00Z", + "LastModifiedDate": "2022-08-19T12:50:00Z" + }, + { + "VulnerabilityID": "CVE-2021-38561", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.4", + "FixedVersion": "0.3.7", + "Layer": { + "Digest": "sha256:e590b4195a9ede4771fe2a1d34f2c29fb584dba4b5adbeb3de1588681fd548b2", + "DiffID": "sha256:0857283c961fe629074c789a752293cceedb201a43f758ac97a5150f660cc9cf" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-38561", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "Description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561" + ], + "PublishedDate": "2022-12-26T06:15:00Z", + "LastModifiedDate": "2023-01-05T04:52:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.4", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:e590b4195a9ede4771fe2a1d34f2c29fb584dba4b5adbeb3de1588681fd548b2", + "DiffID": "sha256:0857283c961fe629074c789a752293cceedb201a43f758ac97a5150f660cc9cf" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "DaemonSet", + "Name": "kindnet", + "Results": [ + { + "Target": "DaemonSet/kindnet", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 130, + "Failures": 11, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 215, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 215, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV009", + "AVDID": "AVD-KSV-0009", + "Title": "Access to host network", + "Description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "Message": "DaemonSet 'kindnet' should not set 'spec.template.spec.hostNetwork' to true", + "Namespace": "builtin.kubernetes.KSV009", + "Query": "data.builtin.kubernetes.KSV009.deny", + "Resolution": "Do not set 'spec.template.spec.hostNetwork' to true.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv009", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 162, + "EndLine": 243, + "Code": { + "Lines": [ + { + "Number": 162, + "Content": " revisionHistoryLimit: 10", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 163, + "Content": " selector:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " matchLabels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " app: kindnet", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " template:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " metadata:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " creationTimestamp: null", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " labels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " app: kindnet", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 171, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 215, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 215, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 215, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 215, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV022", + "AVDID": "AVD-KSV-0022", + "Title": "Non-default capabilities added", + "Description": "Adding NET_RAW or capabilities beyond the default set must be disallowed.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should not set 'securityContext.capabilities.add'", + "Namespace": "builtin.kubernetes.KSV022", + "Query": "data.builtin.kubernetes.KSV022.deny", + "Resolution": "Do not set spec.containers[*].securityContext.capabilities.add and spec.initContainers[*].securityContext.capabilities.add", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv022", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv022" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 215, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV023", + "AVDID": "AVD-KSV-0023", + "Title": "hostPath volumes mounted", + "Description": "HostPath volumes must be forbidden.", + "Message": "DaemonSet 'kindnet' should not set 'spec.template.volumes.hostPath'", + "Namespace": "builtin.kubernetes.KSV023", + "Query": "data.builtin.kubernetes.KSV023.deny", + "Resolution": "Do not set 'spec.volumes[*].hostPath'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv023", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 162, + "EndLine": 243, + "Code": { + "Lines": [ + { + "Number": 162, + "Content": " revisionHistoryLimit: 10", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 163, + "Content": " selector:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " matchLabels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " app: kindnet", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " template:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " metadata:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " creationTimestamp: null", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " labels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " app: kindnet", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 171, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 215, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 215, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "endpointslice-controller", + "Results": [ + { + "Target": "ServiceAccount/endpointslice-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "endpoint-controller", + "Results": [ + { + "Target": "ServiceAccount/endpoint-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "endpointslicemirroring-controller", + "Results": [ + { + "Target": "ServiceAccount/endpointslicemirroring-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "ephemeral-volume-controller", + "Results": [ + { + "Target": "ServiceAccount/ephemeral-volume-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "expand-controller", + "Results": [ + { + "Target": "ServiceAccount/expand-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "generic-garbage-collector", + "Results": [ + { + "Target": "ServiceAccount/generic-garbage-collector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "horizontal-pod-autoscaler", + "Results": [ + { + "Target": "ServiceAccount/horizontal-pod-autoscaler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "job-controller", + "Results": [ + { + "Target": "ServiceAccount/job-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "kindnet", + "Results": [ + { + "Target": "ServiceAccount/kindnet", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "kube-proxy", + "Results": [ + { + "Target": "ServiceAccount/kube-proxy", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "namespace-controller", + "Results": [ + { + "Target": "ServiceAccount/namespace-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "node-controller", + "Results": [ + { + "Target": "ServiceAccount/node-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "persistent-volume-binder", + "Results": [ + { + "Target": "ServiceAccount/persistent-volume-binder", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "pod-garbage-collector", + "Results": [ + { + "Target": "ServiceAccount/pod-garbage-collector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "pv-protection-controller", + "Results": [ + { + "Target": "ServiceAccount/pv-protection-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "pvc-protection-controller", + "Results": [ + { + "Target": "ServiceAccount/pvc-protection-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "replicaset-controller", + "Results": [ + { + "Target": "ServiceAccount/replicaset-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "replication-controller", + "Results": [ + { + "Target": "ServiceAccount/replication-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "resourcequota-controller", + "Results": [ + { + "Target": "ServiceAccount/resourcequota-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "root-ca-cert-publisher", + "Results": [ + { + "Target": "ServiceAccount/root-ca-cert-publisher", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "service-account-controller", + "Results": [ + { + "Target": "ServiceAccount/service-account-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "service-controller", + "Results": [ + { + "Target": "ServiceAccount/service-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "statefulset-controller", + "Results": [ + { + "Target": "ServiceAccount/statefulset-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "token-cleaner", + "Results": [ + { + "Target": "ServiceAccount/token-cleaner", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "ttl-after-finished-controller", + "Results": [ + { + "Target": "ServiceAccount/ttl-after-finished-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "ttl-controller", + "Results": [ + { + "Target": "ServiceAccount/ttl-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kubernetes-dashboard", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kubernetes-dashboard", + "Kind": "ServiceAccount", + "Name": "admin-user", + "Results": [ + { + "Target": "ServiceAccount/admin-user", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "local-path-storage", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kubernetes-dashboard", + "Kind": "ServiceAccount", + "Name": "kubernetes-dashboard", + "Results": [ + { + "Target": "ServiceAccount/kubernetes-dashboard", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "local-path-storage", + "Kind": "ServiceAccount", + "Name": "local-path-provisioner-service-account", + "Results": [ + { + "Target": "ServiceAccount/local-path-provisioner-service-account", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "ServiceAccount", + "Name": "securecodebox-operator", + "Results": [ + { + "Target": "ServiceAccount/securecodebox-operator", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "ServiceAccount", + "Name": "securecodebox-operator-minio", + "Results": [ + { + "Target": "ServiceAccount/securecodebox-operator-minio", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "default", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-node-lease", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "ConfigMap", + "Name": "cluster-info", + "Results": [ + { + "Target": "ConfigMap/cluster-info", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ConfigMap", + "Name": "coredns", + "Results": [ + { + "Target": "ConfigMap/coredns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ConfigMap", + "Name": "extension-apiserver-authentication", + "Results": [ + { + "Target": "ConfigMap/extension-apiserver-authentication", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "AVD-KSV-0110", + "AVDID": "AVD-KSV-01010", + "Title": "ConfigMap with sensitive content", + "Description": "Storing sensitive content such as usernames and email addresses in configMaps is unsafe", + "Message": "ConfigMap 'extension-apiserver-authentication' in 'kube-system' namespace stores sensitive contents in key(s) or value(s) '{\"requestheader-username-headers\"}'", + "Namespace": "builtin.kubernetes.KSV01010", + "Query": "data.builtin.kubernetes.KSV01010.deny", + "Resolution": "Remove sensitive content from configMap data value", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/avd-ksv-0110", + "References": [ + "https://avd.aquasec.com/misconfig/avd-ksv-0110" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ConfigMap", + "Name": "kube-proxy", + "Results": [ + { + "Target": "ConfigMap/kube-proxy", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ConfigMap", + "Name": "kubeadm-config", + "Results": [ + { + "Target": "ConfigMap/kubeadm-config", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ConfigMap", + "Name": "kubelet-config-1.21", + "Results": [ + { + "Target": "ConfigMap/kubelet-config-1.21", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kubernetes-dashboard", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "local-path-storage", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kubernetes-dashboard", + "Kind": "ConfigMap", + "Name": "kubernetes-dashboard-settings", + "Results": [ + { + "Target": "ConfigMap/kubernetes-dashboard-settings", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "local-path-storage", + "Kind": "ConfigMap", + "Name": "local-path-config", + "Results": [ + { + "Target": "ConfigMap/local-path-config", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "Job", + "Name": "scan-trivy-k8s-dnnfb", + "Results": [ + { + "Target": "docker.io/aquasec/trivy:0.42.0 (alpine 3.18.0)", + "Class": "os-pkgs", + "Type": "alpine", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2023-2650", + "PkgID": "libcrypto3@3.1.0-r4", + "PkgName": "libcrypto3", + "InstalledVersion": "3.1.0-r4", + "FixedVersion": "3.1.1-r0", + "Layer": { + "Digest": "sha256:8a49fdb3b6a5ff2bd8ec6a86c05b2922a0f7454579ecc07637e94dfd1d0639b6", + "DiffID": "sha256:bb01bd7e32b58b6694c8c3622c230171f1cec24001a82068a8d30d338f420d6c" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://linux.oracle.com/cve/CVE-2023-2650.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://ubuntu.com/security/notices/USN-6188-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2650", + "PkgID": "libssl3@3.1.0-r4", + "PkgName": "libssl3", + "InstalledVersion": "3.1.0-r4", + "FixedVersion": "3.1.1-r0", + "Layer": { + "Digest": "sha256:8a49fdb3b6a5ff2bd8ec6a86c05b2922a0f7454579ecc07637e94dfd1d0639b6", + "DiffID": "sha256:bb01bd7e32b58b6694c8c3622c230171f1cec24001a82068a8d30d338f420d6c" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://linux.oracle.com/cve/CVE-2023-2650.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://ubuntu.com/security/notices/USN-6188-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + } + ] + }, + { + "Target": "usr/local/bin/trivy", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2020-8911", + "PkgName": "github.com/aws/aws-sdk-go", + "InstalledVersion": "v1.44.245", + "Layer": { + "Digest": "sha256:f37db642112f82c5dc635254f8d6d0ebcec6fdc4c080b0df4bee624993a427ea", + "DiffID": "sha256:c28cfea923a7a296b5260268269fca5cdbb835c3a9a0eebfe8b11077bdcf8a2a" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-8911", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "aws/aws-sdk-go: CBC padding oracle issue in AWS S3 Crypto SDK for golang", + "Description": "A padding oracle vulnerability exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. The SDK allows users to encrypt files with AES-CBC without computing a Message Authentication Code (MAC), which then allows an attacker who has write access to the target's S3 bucket and can observe whether or not an endpoint with access to the key can decrypt a file, they can reconstruct the plaintext with (on average) 128*length (plaintext) queries to the endpoint, by exploiting CBC's ability to manipulate the bytes of the next block and PKCS5 padding errors. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N", + "V3Score": 5.6 + }, + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N", + "V2Score": 2.1, + "V3Score": 5.6 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N", + "V3Score": 5.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-8911", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869800", + "https://github.com/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8911", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8911" + ], + "PublishedDate": "2020-08-11T20:15:00Z", + "LastModifiedDate": "2020-08-18T13:37:00Z" + }, + { + "VulnerabilityID": "CVE-2020-8912", + "PkgName": "github.com/aws/aws-sdk-go", + "InstalledVersion": "v1.44.245", + "Layer": { + "Digest": "sha256:f37db642112f82c5dc635254f8d6d0ebcec6fdc4c080b0df4bee624993a427ea", + "DiffID": "sha256:c28cfea923a7a296b5260268269fca5cdbb835c3a9a0eebfe8b11077bdcf8a2a" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-8912", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "aws-sdk-go: In-band key negotiation issue in AWS S3 Crypto SDK for golang", + "Description": "A vulnerability in the in-band key negotiation exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. An attacker with write access to the targeted bucket can change the encryption algorithm of an object in the bucket, which can then allow them to change AES-GCM to AES-CTR. Using this in combination with a decryption oracle can reveal the authentication key used by AES-GCM as decrypting the GMAC tag leaves the authentication key recoverable as an algebraic equation. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.5 + }, + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 2.1, + "V3Score": 2.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-8912", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869801", + "https://github.com/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8912", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8912" + ], + "PublishedDate": "2020-08-11T20:15:00Z", + "LastModifiedDate": "2020-08-17T19:31:00Z" + } + ] + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "Job", + "Name": "scan-trivy-k8s-dnnfb", + "Results": [ + { + "Target": "docker.io/securecodebox/lurker:4.0.1 (debian 11.7)", + "Class": "os-pkgs", + "Type": "debian" + }, + { + "Target": "lurker", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-28948", + "PkgName": "gopkg.in/yaml.v3", + "InstalledVersion": "v3.0.0-20210107192922-496545a6307b", + "FixedVersion": "3.0.0-20220521103104-8f96da9f5d5e", + "Layer": { + "Digest": "sha256:1c43015021af3815129fce0fb90318c2386e55f1cf4fc9bcf43cf7b680379f5b", + "DiffID": "sha256:ce41ba0d483809b8e8d3772d6020d5584f8056c8ea50642b3101765e8e5df275" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-28948", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "crash when attempting to deserialize invalid input", + "Description": "An issue in the Unmarshal function in Go-Yaml v3 causes the program to crash when attempting to deserialize invalid input.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-502" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-28948", + "https://github.com/advisories/GHSA-hp87-p4gw-j4gq", + "https://github.com/go-yaml/yaml/commit/8f96da9f5d5eff988554c1aae1784627c4bf6754", + "https://github.com/go-yaml/yaml/issues/666", + "https://nvd.nist.gov/vuln/detail/CVE-2022-28948", + "https://security.netapp.com/advisory/ntap-20220923-0006/", + "https://www.cve.org/CVERecord?id=CVE-2022-28948" + ], + "PublishedDate": "2022-05-19T20:15:00Z", + "LastModifiedDate": "2022-10-28T19:06:00Z" + } + ] + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "Job", + "Name": "scan-trivy-k8s-dnnfb", + "Results": [ + { + "Target": "Job/scan-trivy-k8s-dnnfb", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 131, + "Failures": 14, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 168, + "EndLine": 195, + "Code": { + "Lines": [ + { + "Number": 168, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 169, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 177, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 168, + "EndLine": 195, + "Code": { + "Lines": [ + { + "Number": 168, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 169, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 177, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 168, + "EndLine": 195, + "Code": { + "Lines": [ + { + "Number": 168, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 169, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 177, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV015", + "AVDID": "AVD-KSV-0015", + "Title": "CPU requests not specified", + "Description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'resources.requests.cpu'", + "Namespace": "builtin.kubernetes.KSV015", + "Query": "data.builtin.kubernetes.KSV015.deny", + "Resolution": "Set 'containers[].resources.requests.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv015", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 168, + "EndLine": 195, + "Code": { + "Lines": [ + { + "Number": 168, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 169, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 177, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 168, + "EndLine": 195, + "Code": { + "Lines": [ + { + "Number": 168, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 169, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 177, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 168, + "EndLine": 195, + "Code": { + "Lines": [ + { + "Number": 168, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 169, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 177, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'lurker' of Job 'scan-trivy-k8s-dnnfb' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 196, + "EndLine": 232, + "Code": { + "Lines": [ + { + "Number": 196, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 197, + "Content": " - --container", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 199, + "Content": " - --file", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 200, + "Content": " - /home/securecodebox/trivy-results.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 201, + "Content": " - --url", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 202, + "Content": " - http://securecodebox-operator-minio.securecodebox-system.svc.cluster.local:9000/securecodebox/scan-6a34fc6c-9653-4f95-8d44-0eca3de87abd/trivy-results.json?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=admin%2F20230625%2Fus-east-1%2Fs3%2Faws4_request\u0026X-Amz-Date=20230625T190817Z\u0026X-Amz-Expires=43200\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=5063402001a0fd68c3cb9dde74376c5942a762ad07c49bbf88a6efd6f1e0f225", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 203, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 204, + "Content": " - name: NAMESPACE", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 205, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 168, + "EndLine": 195, + "Code": { + "Lines": [ + { + "Number": 168, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 169, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 177, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'lurker' of Job 'scan-trivy-k8s-dnnfb' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 196, + "EndLine": 232, + "Code": { + "Lines": [ + { + "Number": 196, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 197, + "Content": " - --container", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 199, + "Content": " - --file", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 200, + "Content": " - /home/securecodebox/trivy-results.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 201, + "Content": " - --url", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 202, + "Content": " - http://securecodebox-operator-minio.securecodebox-system.svc.cluster.local:9000/securecodebox/scan-6a34fc6c-9653-4f95-8d44-0eca3de87abd/trivy-results.json?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=admin%2F20230625%2Fus-east-1%2Fs3%2Faws4_request\u0026X-Amz-Date=20230625T190817Z\u0026X-Amz-Expires=43200\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=5063402001a0fd68c3cb9dde74376c5942a762ad07c49bbf88a6efd6f1e0f225", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 203, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 204, + "Content": " - name: NAMESPACE", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 205, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-dnnfb' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 168, + "EndLine": 195, + "Code": { + "Lines": [ + { + "Number": 168, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 169, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 177, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 196, + "EndLine": 232, + "Code": { + "Lines": [ + { + "Number": 196, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 197, + "Content": " - --container", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 199, + "Content": " - --file", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 200, + "Content": " - /home/securecodebox/trivy-results.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 201, + "Content": " - --url", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 202, + "Content": " - http://securecodebox-operator-minio.securecodebox-system.svc.cluster.local:9000/securecodebox/scan-6a34fc6c-9653-4f95-8d44-0eca3de87abd/trivy-results.json?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=admin%2F20230625%2Fus-east-1%2Fs3%2Faws4_request\u0026X-Amz-Date=20230625T190817Z\u0026X-Amz-Expires=43200\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=5063402001a0fd68c3cb9dde74376c5942a762ad07c49bbf88a6efd6f1e0f225", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 203, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 204, + "Content": " - name: NAMESPACE", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 205, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 168, + "EndLine": 195, + "Code": { + "Lines": [ + { + "Number": 168, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 169, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 177, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 168, + "EndLine": 195, + "Code": { + "Lines": [ + { + "Number": 168, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 169, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 177, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 196, + "EndLine": 232, + "Code": { + "Lines": [ + { + "Number": 196, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 197, + "Content": " - --container", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 199, + "Content": " - --file", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 200, + "Content": " - /home/securecodebox/trivy-results.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 201, + "Content": " - --url", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 202, + "Content": " - http://securecodebox-operator-minio.securecodebox-system.svc.cluster.local:9000/securecodebox/scan-6a34fc6c-9653-4f95-8d44-0eca3de87abd/trivy-results.json?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=admin%2F20230625%2Fus-east-1%2Fs3%2Faws4_request\u0026X-Amz-Date=20230625T190817Z\u0026X-Amz-Expires=43200\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=5063402001a0fd68c3cb9dde74376c5942a762ad07c49bbf88a6efd6f1e0f225", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 203, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 204, + "Content": " - name: NAMESPACE", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 205, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "Role", + "Name": "kubeadm:bootstrap-signer-clusterinfo", + "Results": [ + { + "Target": "Role/kubeadm:bootstrap-signer-clusterinfo", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "Role", + "Name": "lurker", + "Results": [ + { + "Target": "Role/lurker", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "Role", + "Name": "system:controller:bootstrap-signer", + "Results": [ + { + "Target": "Role/system:controller:bootstrap-signer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "Role 'system:controller:bootstrap-signer' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 37, + "EndLine": 44, + "Code": { + "Lines": [ + { + "Number": 37, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 38, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " resourceNames:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - cluster-info", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 42, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 44, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "kube-proxy", + "Results": [ + { + "Target": "Role/kube-proxy", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "extension-apiserver-authentication-reader", + "Results": [ + { + "Target": "Role/extension-apiserver-authentication-reader", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "kubeadm:kubelet-config-1.21", + "Results": [ + { + "Target": "Role/kubeadm:kubelet-config-1.21", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "kubeadm:nodes-kubeadm-config", + "Results": [ + { + "Target": "Role/kubeadm:nodes-kubeadm-config", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "system::leader-locking-kube-controller-manager", + "Results": [ + { + "Target": "Role/system::leader-locking-kube-controller-manager", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "Role 'system::leader-locking-kube-controller-manager' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 35, + "EndLine": 43, + "Code": { + "Lines": [ + { + "Number": 35, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 36, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " resourceNames:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 42, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "system::leader-locking-kube-scheduler", + "Results": [ + { + "Target": "Role/system::leader-locking-kube-scheduler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "Role 'system::leader-locking-kube-scheduler' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 35, + "EndLine": 43, + "Code": { + "Lines": [ + { + "Number": 35, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 36, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " resourceNames:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 42, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "system:controller:bootstrap-signer", + "Results": [ + { + "Target": "Role/system:controller:bootstrap-signer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 29, + "EndLine": 36, + "Code": { + "Lines": [ + { + "Number": 29, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 30, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "system:controller:cloud-provider", + "Results": [ + { + "Target": "Role/system:controller:cloud-provider", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "Role 'system:controller:cloud-provider' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 29, + "EndLine": 37, + "Code": { + "Lines": [ + { + "Number": 29, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 30, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "system:controller:token-cleaner", + "Results": [ + { + "Target": "Role/system:controller:token-cleaner", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 29, + "EndLine": 37, + "Code": { + "Lines": [ + { + "Number": 29, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 30, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kubernetes-dashboard", + "Kind": "Role", + "Name": "kubernetes-dashboard", + "Results": [ + { + "Target": "Role/kubernetes-dashboard", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 139, + "Failures": 2, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 30, + "EndLine": 41, + "Code": { + "Lines": [ + { + "Number": 30, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 31, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " resourceNames:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - kubernetes-dashboard-key-holder", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - kubernetes-dashboard-certs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - kubernetes-dashboard-csrf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 39, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "Role 'kubernetes-dashboard' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 42, + "EndLine": 50, + "Code": { + "Lines": [ + { + "Number": 42, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 43, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 44, + "Content": " resourceNames:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 45, + "Content": " - kubernetes-dashboard-settings", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 46, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 47, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 48, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 49, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 50, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "Role", + "Name": "leader-election-role", + "Results": [ + { + "Target": "Role/leader-election-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "Role 'leader-election-role' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 31, + "EndLine": 42, + "Code": { + "Lines": [ + { + "Number": 31, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 32, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 40, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "RoleBinding", + "Name": "lurker", + "Results": [ + { + "Target": "RoleBinding/lurker", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "RoleBinding", + "Name": "trivy-k8s-lurker", + "Results": [ + { + "Target": "RoleBinding/trivy-k8s-lurker", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "RoleBinding", + "Name": "kubeadm:bootstrap-signer-clusterinfo", + "Results": [ + { + "Target": "RoleBinding/kubeadm:bootstrap-signer-clusterinfo", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "RoleBinding", + "Name": "system:controller:bootstrap-signer", + "Results": [ + { + "Target": "RoleBinding/system:controller:bootstrap-signer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "kubeadm:kubelet-config-1.21", + "Results": [ + { + "Target": "RoleBinding/kubeadm:kubelet-config-1.21", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "kube-proxy", + "Results": [ + { + "Target": "RoleBinding/kube-proxy", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "kubeadm:nodes-kubeadm-config", + "Results": [ + { + "Target": "RoleBinding/kubeadm:nodes-kubeadm-config", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "system::extension-apiserver-authentication-reader", + "Results": [ + { + "Target": "RoleBinding/system::extension-apiserver-authentication-reader", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "system::leader-locking-kube-controller-manager", + "Results": [ + { + "Target": "RoleBinding/system::leader-locking-kube-controller-manager", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "system::leader-locking-kube-scheduler", + "Results": [ + { + "Target": "RoleBinding/system::leader-locking-kube-scheduler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "system:controller:bootstrap-signer", + "Results": [ + { + "Target": "RoleBinding/system:controller:bootstrap-signer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "system:controller:cloud-provider", + "Results": [ + { + "Target": "RoleBinding/system:controller:cloud-provider", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "system:controller:token-cleaner", + "Results": [ + { + "Target": "RoleBinding/system:controller:token-cleaner", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kubernetes-dashboard", + "Kind": "RoleBinding", + "Name": "kubernetes-dashboard", + "Results": [ + { + "Target": "RoleBinding/kubernetes-dashboard", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "RoleBinding", + "Name": "leader-election-rolebinding", + "Results": [ + { + "Target": "RoleBinding/leader-election-rolebinding", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "cluster-admin", + "Results": [ + { + "Target": "ClusterRole/cluster-admin", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 139, + "Failures": 2, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV044", + "AVDID": "AVD-KSV-0044", + "Title": "No wildcard verb and resource roles", + "Description": "Check whether role permits wildcard verb on wildcard resource", + "Message": "Role permits wildcard verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV044", + "Query": "data.builtin.kubernetes.KSV044.deny", + "Resolution": "Create a role which does not permit wildcard verb on wildcard resource", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv044", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv044" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 33, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV046", + "AVDID": "AVD-KSV-0046", + "Title": "No wildcard resource roles", + "Description": "Check whether role permits specific verb on wildcard resources", + "Message": "Role permits specific verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV046", + "Query": "data.builtin.kubernetes.KSV046.deny", + "Resolution": "Create a role which does not permit specific verb on wildcard resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv046", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 33, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "admin", + "Results": [ + { + "Target": "ClusterRole/admin", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 136, + "Failures": 11, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 41, + "EndLine": 53, + "Code": { + "Lines": [ + { + "Number": 41, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 42, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 44, + "Content": " - pods/attach", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 45, + "Content": " - pods/exec", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 46, + "Content": " - pods/portforward", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 47, + "Content": " - pods/proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 48, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 49, + "Content": " - services/proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 50, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 74, + "EndLine": 91, + "Code": { + "Lines": [ + { + "Number": 74, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 75, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 76, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 77, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 78, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 79, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 80, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 81, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 83, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 74, + "EndLine": 91, + "Code": { + "Lines": [ + { + "Number": 74, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 75, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 76, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 77, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 78, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 79, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 80, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 81, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 83, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 92, + "EndLine": 108, + "Code": { + "Lines": [ + { + "Number": 92, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 93, + "Content": " - apps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 94, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 95, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 96, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 97, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 98, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 99, + "Content": " - replicasets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 100, + "Content": " - replicasets/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 101, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 119, + "EndLine": 129, + "Code": { + "Lines": [ + { + "Number": 119, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 120, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 121, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 122, + "Content": " - cronjobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 123, + "Content": " - jobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 124, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 125, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 126, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 127, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 128, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 130, + "EndLine": 147, + "Code": { + "Lines": [ + { + "Number": 130, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 131, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 132, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 133, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 134, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 137, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 138, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 139, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "ClusterRole 'admin' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 74, + "EndLine": 91, + "Code": { + "Lines": [ + { + "Number": 74, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 75, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 76, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 77, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 78, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 79, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 80, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 81, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 83, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV050", + "AVDID": "AVD-KSV-0050", + "Title": "Do not allow management of RBAC resources", + "Description": "An effective level of access equivalent to cluster-admin should not be provided.", + "Message": "ClusterRole 'admin' should not have access to resources [\"roles\", \"rolebindings\"] for verbs [\"create\", \"update\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV050", + "Query": "data.builtin.kubernetes.KSV050.deny", + "Resolution": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv050", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 293, + "EndLine": 306, + "Code": { + "Lines": [ + { + "Number": 293, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 294, + "Content": " - rbac.authorization.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 295, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 296, + "Content": " - rolebindings", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 297, + "Content": " - roles", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 298, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 299, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 300, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 301, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 302, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'admin' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 74, + "EndLine": 91, + "Code": { + "Lines": [ + { + "Number": 74, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 75, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 76, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 77, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 78, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 79, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 80, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 81, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 83, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'admin' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 130, + "EndLine": 147, + "Code": { + "Lines": [ + { + "Number": 130, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 131, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 132, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 133, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 134, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 137, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 138, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 139, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'admin' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 158, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 158, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 159, + "Content": " - networking.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 167, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "edit", + "Results": [ + { + "Target": "ClusterRole/edit", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 137, + "Failures": 10, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 43, + "EndLine": 55, + "Code": { + "Lines": [ + { + "Number": 43, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 44, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 45, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 46, + "Content": " - pods/attach", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 47, + "Content": " - pods/exec", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 48, + "Content": " - pods/portforward", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 49, + "Content": " - pods/proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 50, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 51, + "Content": " - services/proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 52, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 76, + "EndLine": 93, + "Code": { + "Lines": [ + { + "Number": 76, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 77, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 78, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 79, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 80, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 81, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 85, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 76, + "EndLine": 93, + "Code": { + "Lines": [ + { + "Number": 76, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 77, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 78, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 79, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 80, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 81, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 85, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 94, + "EndLine": 110, + "Code": { + "Lines": [ + { + "Number": 94, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 95, + "Content": " - apps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 96, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 97, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 98, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 99, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 100, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 101, + "Content": " - replicasets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 102, + "Content": " - replicasets/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 103, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 121, + "EndLine": 131, + "Code": { + "Lines": [ + { + "Number": 121, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 122, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 123, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 124, + "Content": " - cronjobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 125, + "Content": " - jobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 126, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 127, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 128, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 129, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 130, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 132, + "EndLine": 149, + "Code": { + "Lines": [ + { + "Number": 132, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 133, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 134, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 137, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 138, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 141, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "ClusterRole 'edit' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 76, + "EndLine": 93, + "Code": { + "Lines": [ + { + "Number": 76, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 77, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 78, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 79, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 80, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 81, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 85, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'edit' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 76, + "EndLine": 93, + "Code": { + "Lines": [ + { + "Number": 76, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 77, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 78, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 79, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 80, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 81, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 85, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'edit' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 132, + "EndLine": 149, + "Code": { + "Lines": [ + { + "Number": 132, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 133, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 134, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 137, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 138, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 141, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'edit' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 160, + "EndLine": 170, + "Code": { + "Lines": [ + { + "Number": 160, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 161, + "Content": " - networking.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 169, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "kindnet", + "Results": [ + { + "Target": "ClusterRole/kindnet", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "kubeadm:get-nodes", + "Results": [ + { + "Target": "ClusterRole/kubeadm:get-nodes", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "kubernetes-dashboard", + "Results": [ + { + "Target": "ClusterRole/kubernetes-dashboard", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "local-path-provisioner-role", + "Results": [ + { + "Target": "ClusterRole/local-path-provisioner-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 139, + "Failures": 2, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV045", + "AVDID": "AVD-KSV-0045", + "Title": "No wildcard verb roles", + "Description": "Check whether role permits wildcard verb on specific resources", + "Message": "Role permits wildcard verb on specific resources", + "Namespace": "builtin.kubernetes.KSV045", + "Query": "data.builtin.kubernetes.KSV045.deny", + "Resolution": "Create a role which does not permit wildcard verb on specific resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv045", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv045" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 33, + "EndLine": 40, + "Code": { + "Lines": [ + { + "Number": 33, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 34, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - persistentvolumes", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - pods", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'local-path-provisioner-role' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 33, + "EndLine": 40, + "Code": { + "Lines": [ + { + "Number": 33, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 34, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - persistentvolumes", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - pods", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "manager-role", + "Results": [ + { + "Target": "ClusterRole/manager-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 139, + "Failures": 3, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 30, + "EndLine": 41, + "Code": { + "Lines": [ + { + "Number": 30, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 31, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - jobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 39, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV050", + "AVDID": "AVD-KSV-0050", + "Title": "Do not allow management of RBAC resources", + "Description": "An effective level of access equivalent to cluster-admin should not be provided.", + "Message": "ClusterRole 'manager-role' should not have access to resources [\"roles\", \"rolebindings\"] for verbs [\"create\", \"update\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV050", + "Query": "data.builtin.kubernetes.KSV050.deny", + "Resolution": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv050", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 121, + "EndLine": 129, + "Code": { + "Lines": [ + { + "Number": 121, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 122, + "Content": " - rbac.authorization.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 123, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 124, + "Content": " - rolebindings", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 125, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 126, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 127, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 128, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 129, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV050", + "AVDID": "AVD-KSV-0050", + "Title": "Do not allow management of RBAC resources", + "Description": "An effective level of access equivalent to cluster-admin should not be provided.", + "Message": "ClusterRole 'manager-role' should not have access to resources [\"roles\", \"rolebindings\"] for verbs [\"create\", \"update\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV050", + "Query": "data.builtin.kubernetes.KSV050.deny", + "Resolution": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv050", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 130, + "EndLine": 139, + "Code": { + "Lines": [ + { + "Number": 130, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 131, + "Content": " - rbac.authorization.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 132, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 133, + "Content": " - roles", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 134, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 137, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 138, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "metrics-reader", + "Results": [ + { + "Target": "ClusterRole/metrics-reader", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "parsedefinition-editor-role", + "Results": [ + { + "Target": "ClusterRole/parsedefinition-editor-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "parsedefinition-viewer-role", + "Results": [ + { + "Target": "ClusterRole/parsedefinition-viewer-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "proxy-role", + "Results": [ + { + "Target": "ClusterRole/proxy-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "scan-editor-role", + "Results": [ + { + "Target": "ClusterRole/scan-editor-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "scan-viewer-role", + "Results": [ + { + "Target": "ClusterRole/scan-viewer-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "scantype-editor-role", + "Results": [ + { + "Target": "ClusterRole/scantype-editor-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "scantype-viewer-role", + "Results": [ + { + "Target": "ClusterRole/scantype-viewer-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "scheduledscan-editor-role", + "Results": [ + { + "Target": "ClusterRole/scheduledscan-editor-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "scheduledscan-viewer-role", + "Results": [ + { + "Target": "ClusterRole/scheduledscan-viewer-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "DaemonSet", + "Name": "kube-proxy", + "Results": [ + { + "Target": "k8s.gcr.io/kube-proxy:v1.21.1 (debian 10.9)", + "Class": "os-pkgs", + "Type": "debian", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2011-3374", + "PkgID": "apt@1.8.2.2", + "PkgName": "apt", + "InstalledVersion": "1.8.2.2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "PublishedDate": "2019-11-26T00:15:00Z", + "LastModifiedDate": "2021-02-09T16:08:00Z" + }, + { + "VulnerabilityID": "CVE-2021-37600", + "PkgID": "bsdutils@1:2.33.1-0.1", + "PkgName": "bsdutils", + "InstalledVersion": "1:2.33.1-0.1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-37600", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: integer overflow can lead to buffer overflow in get_sem_elements() in sys-utils/ipcutils.c", + "Description": "** DISPUTED ** An integer overflow in util-linux through 2.37.1 can potentially cause a buffer overflow if an attacker were able to use system resources in a way that leads to a large number in the /proc/sysvipc/sem file. NOTE: this is unexploitable in GNU C Library environments, and possibly in all realistic environments.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 1.2, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-37600", + "https://github.com/karelzak/util-linux/commit/1c9143d0c1f979c3daf10e1c37b5b1e916c22a1c", + "https://github.com/karelzak/util-linux/issues/1395", + "https://nvd.nist.gov/vuln/detail/CVE-2021-37600", + "https://security.netapp.com/advisory/ntap-20210902-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-37600" + ], + "PublishedDate": "2021-07-30T14:15:00Z", + "LastModifiedDate": "2021-10-18T12:18:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "bsdutils@1:2.33.1-0.1", + "PkgName": "bsdutils", + "InstalledVersion": "1:2.33.1-0.1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2016-2781", + "PkgID": "coreutils@8.30-3", + "PkgName": "coreutils", + "InstalledVersion": "8.30-3", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-2781", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "coreutils: Non-privileged session can escape to the parent session in chroot", + "Description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "Severity": "LOW", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:N", + "V2Score": 2.1, + "V3Score": 6.5 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H", + "V2Score": 6.2, + "V3Score": 8.6 + } + }, + "References": [ + "http://seclists.org/oss-sec/2016/q1/452", + "http://www.openwall.com/lists/oss-security/2016/02/28/2", + "http://www.openwall.com/lists/oss-security/2016/02/28/3", + "https://access.redhat.com/security/cve/CVE-2016-2781", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lore.kernel.org/patchwork/patch/793178/", + "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + "https://www.cve.org/CVERecord?id=CVE-2016-2781" + ], + "PublishedDate": "2017-02-07T15:59:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-18018", + "PkgID": "coreutils@8.30-3", + "PkgName": "coreutils", + "InstalledVersion": "8.30-3", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-18018", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "coreutils: race condition vulnerability in chown and chgrp", + "Description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX \"-R -L\" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "Severity": "LOW", + "CweIDs": [ + "CWE-362" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 1.9, + "V3Score": 4.7 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:R/S:U/C:L/I:L/A:L", + "V3Score": 4.2 + } + }, + "References": [ + "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + "https://access.redhat.com/security/cve/CVE-2017-18018", + "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + "https://www.cve.org/CVERecord?id=CVE-2017-18018" + ], + "PublishedDate": "2018-01-04T04:29:00Z", + "LastModifiedDate": "2018-01-19T15:46:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1664", + "VendorIDs": [ + "DSA-5147-1" + ], + "PkgID": "dpkg@1.19.7", + "PkgName": "dpkg", + "InstalledVersion": "1.19.7", + "FixedVersion": "1.19.8", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1664", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dpkg::Source::Archive in dpkg, the Debian package management system, b ...", + "Description": "Dpkg::Source::Archive in dpkg, the Debian package management system, before version 1.21.8, 1.20.10, 1.19.8, 1.18.26 is prone to a directory traversal vulnerability. When extracting untrusted source packages in v2 and v3 source package formats that include a debian.tar, the in-place extraction can lead to directory traversal situations on specially crafted orig.tar and debian.tar tarballs.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-22" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1664", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f23dddc17f69c9598477098c7fb9936e15fa495", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=58814cacee39c4ce9e2cd0e3a3b9b57ad437eff5", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=7a6c03cb34d4a09f35df2f10779cbf1b70a5200b", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=faa4c92debe45412bfcf8a44f26e827800bb24be", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00033.html", + "https://lists.debian.org/debian-security-announce/2022/msg00115.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1664", + "https://security.netapp.com/advisory/ntap-20221007-0002/", + "https://ubuntu.com/security/notices/USN-5446-1", + "https://ubuntu.com/security/notices/USN-5446-2" + ], + "PublishedDate": "2022-05-26T14:15:00Z", + "LastModifiedDate": "2022-12-03T02:19:00Z" + }, + { + "VulnerabilityID": "CVE-2018-12886", + "PkgID": "gcc-8-base@8.3.0-6", + "PkgName": "gcc-8-base", + "InstalledVersion": "8.3.0-6", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12886", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass", + "Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H", + "V3Score": 6.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-12886", + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379\u0026view=markup", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "https://www.cve.org/CVERecord?id=CVE-2018-12886", + "https://www.gnu.org/software/gcc/gcc-8/changes.html" + ], + "PublishedDate": "2019-05-22T19:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2019-15847", + "PkgID": "gcc-8-base@8.3.0-6", + "PkgName": "gcc-8-base", + "InstalledVersion": "8.3.0-6", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15847", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gcc: POWER9 \"DARN\" RNG intrinsic produces repeated output", + "Description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-331" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + "https://access.redhat.com/security/cve/CVE-2019-15847", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + "https://linux.oracle.com/cve/CVE-2019-15847.html", + "https://linux.oracle.com/errata/ELSA-2020-1864.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + "https://www.cve.org/CVERecord?id=CVE-2019-15847" + ], + "PublishedDate": "2019-09-02T23:15:00Z", + "LastModifiedDate": "2020-09-17T13:38:00Z" + }, + { + "VulnerabilityID": "CVE-2022-34903", + "VendorIDs": [ + "DSA-5174-1" + ], + "PkgID": "gpgv@2.2.12-1+deb10u1", + "PkgName": "gpgv", + "InstalledVersion": "2.2.12-1+deb10u1", + "FixedVersion": "2.2.12-1+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-34903", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Signature spoofing via status line injection", + "Description": "GnuPG through 2.3.6, in unusual situations where an attacker possesses any secret-key information from a victim's keyring and other constraints (e.g., use of GPGME) are met, allows signature forgery via injection into the status line.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:N", + "V2Score": 5.8, + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2022/07/02/1", + "https://access.redhat.com/errata/RHSA-2022:6602", + "https://access.redhat.com/security/cve/CVE-2022-34903", + "https://bugs.debian.org/1014157", + "https://bugzilla.redhat.com/2102868", + "https://bugzilla.redhat.com/show_bug.cgi?id=2102868", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34903", + "https://dev.gnupg.org/T6027", + "https://errata.almalinux.org/9/ALSA-2022-6602.html", + "https://errata.rockylinux.org/RLSA-2022:6602", + "https://linux.oracle.com/cve/CVE-2022-34903.html", + "https://linux.oracle.com/errata/ELSA-2022-6602.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-34903", + "https://security.netapp.com/advisory/ntap-20220826-0005/", + "https://ubuntu.com/security/notices/USN-5503-1", + "https://ubuntu.com/security/notices/USN-5503-2", + "https://www.cve.org/CVERecord?id=CVE-2022-34903", + "https://www.debian.org/security/2022/dsa-5174", + "https://www.openwall.com/lists/oss-security/2022/06/30/1" + ], + "PublishedDate": "2022-07-01T22:15:00Z", + "LastModifiedDate": "2022-09-09T20:40:00Z" + }, + { + "VulnerabilityID": "CVE-2019-14855", + "PkgID": "gpgv@2.2.12-1+deb10u1", + "PkgName": "gpgv", + "InstalledVersion": "2.2.12-1+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-14855", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gnupg2: OpenPGP Key Certification Forgeries with SHA-1", + "Description": "A flaw was found in the way certificate signatures could be forged using collisions found in the SHA-1 algorithm. An attacker could use this weakness to create forged certificate signatures. This issue affects GnuPG versions before 2.2.18.", + "Severity": "LOW", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-14855", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-14855", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-14855", + "https://dev.gnupg.org/T4755", + "https://eprint.iacr.org/2020/014.pdf", + "https://lists.gnupg.org/pipermail/gnupg-announce/2019q4/000442.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-14855", + "https://rwc.iacr.org/2020/slides/Leurent.pdf", + "https://ubuntu.com/security/notices/USN-4516-1", + "https://usn.ubuntu.com/4516-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-14855" + ], + "PublishedDate": "2020-03-20T16:15:00Z", + "LastModifiedDate": "2022-11-08T02:28:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3219", + "PkgID": "gpgv@2.2.12-1+deb10u1", + "PkgName": "gpgv", + "InstalledVersion": "2.2.12-1+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3219", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "denial of service issue (resource consumption) using compressed packets", + "Description": "GnuPG can be made to spin on a relatively small input by (for example) crafting a public key with thousands of signatures attached, compressed down to just a few KB.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-3219", + "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + "https://dev.gnupg.org/D556", + "https://dev.gnupg.org/T5993", + "https://marc.info/?l=oss-security\u0026m=165696590211434\u0026w=4", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + "https://security.netapp.com/advisory/ntap-20230324-0001/", + "https://www.cve.org/CVERecord?id=CVE-2022-3219" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-05-26T16:31:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1271", + "VendorIDs": [ + "DSA-5122-1" + ], + "PkgID": "gzip@1.9-3", + "PkgName": "gzip", + "InstalledVersion": "1.9-3", + "FixedVersion": "1.9-3+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1271", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "arbitrary-file-write vulnerability", + "Description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8" + ], + "PublishedDate": "2022-08-31T16:15:00Z", + "LastModifiedDate": "2022-10-07T14:14:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "iptables@1.8.5-3~bpo10+1", + "PkgName": "iptables", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:76e904deb6ef7af062ebd0819238b36a65ce5289960e2539e40b30416bd16f9f", + "DiffID": "sha256:3cf1454ee1bfffc50cc60cfd7c733db1e9837df1ae9cb58e93f62cc3a2516c57" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2019-11360", + "PkgID": "iptables@1.8.5-3~bpo10+1", + "PkgName": "iptables", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:76e904deb6ef7af062ebd0819238b36a65ce5289960e2539e40b30416bd16f9f", + "DiffID": "sha256:3cf1454ee1bfffc50cc60cfd7c733db1e9837df1ae9cb58e93f62cc3a2516c57" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11360", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: buffer overflow in iptables-restore", + "Description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:S/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 3.5, + "V3Score": 4.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.2 + } + }, + "References": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360" + ], + "PublishedDate": "2019-07-12T14:15:00Z", + "LastModifiedDate": "2021-07-21T11:39:00Z" + }, + { + "VulnerabilityID": "CVE-2011-3374", + "PkgID": "libapt-pkg5.0@1.8.2.2", + "PkgName": "libapt-pkg5.0", + "InstalledVersion": "1.8.2.2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "PublishedDate": "2019-11-26T00:15:00Z", + "LastModifiedDate": "2021-02-09T16:08:00Z" + }, + { + "VulnerabilityID": "DLA-3112-1", + "VendorIDs": [ + "DLA-3112-1" + ], + "PkgID": "libbz2-1.0@1.0.6-9.2~deb10u1", + "PkgName": "libbz2-1.0", + "InstalledVersion": "1.0.6-9.2~deb10u1", + "FixedVersion": "1.0.6-9.2~deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "bzip2 - bugfix update", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "CVE-2021-33574", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33574", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: mq_notify does not handle separately allocated thread attributes", + "Description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-33574", + "https://linux.oracle.com/cve/CVE-2021-33574.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210629-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1", + "https://www.cve.org/CVERecord?id=CVE-2021-33574" + ], + "PublishedDate": "2021-05-25T22:15:00Z", + "LastModifiedDate": "2022-11-08T13:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-35942", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-35942", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Arbitrary read in wordexp()", + "Description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 9.1 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-35942.json", + "https://access.redhat.com/security/cve/CVE-2021-35942", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-35942", + "https://linux.oracle.com/cve/CVE-2021-35942.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + "https://security.gentoo.org/glsa/202208-24", + "https://security.netapp.com/advisory/ntap-20210827-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + "https://sourceware.org/glibc/wiki/Security%20Exceptions", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-35942" + ], + "PublishedDate": "2021-07-22T18:15:00Z", + "LastModifiedDate": "2022-11-08T13:29:00Z" + }, + { + "VulnerabilityID": "CVE-2022-23218", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-23218", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Stack-based buffer overflow in svcunix_create via long pathnames", + "Description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-120" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-23218", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23218", + "https://linux.oracle.com/cve/CVE-2022-23218.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23218", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-01-14T07:15:00Z", + "LastModifiedDate": "2022-11-08T13:37:00Z" + }, + { + "VulnerabilityID": "CVE-2022-23219", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-23219", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Stack-based buffer overflow in sunrpc clnt_create via a long pathname", + "Description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-120" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-23219", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23219", + "https://linux.oracle.com/cve/CVE-2022-23219.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23219", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-01-14T07:15:00Z", + "LastModifiedDate": "2022-11-08T13:32:00Z" + }, + { + "VulnerabilityID": "CVE-2020-1751", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1751", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: array overflow in backtrace functions for powerpc", + "Description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 5.9, + "V3Score": 7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-1751", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1751", + "https://linux.oracle.com/cve/CVE-2020-1751.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200430-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1751" + ], + "PublishedDate": "2020-04-17T19:15:00Z", + "LastModifiedDate": "2023-01-27T18:34:00Z" + }, + { + "VulnerabilityID": "CVE-2020-1752", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1752", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: use-after-free in glob() function when expanding ~user", + "Description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 3.7, + "V3Score": 7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-1752", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1752", + "https://linux.oracle.com/cve/CVE-2020-1752.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + "https://security.gentoo.org/glsa/202101-20", + "https://security.netapp.com/advisory/ntap-20200511-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1752" + ], + "PublishedDate": "2020-04-30T17:15:00Z", + "LastModifiedDate": "2022-10-28T20:06:00Z" + }, + { + "VulnerabilityID": "CVE-2020-6096", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-6096", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: signed comparison vulnerability in the ARMv7 memcpy function", + "Description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-195" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-6096", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6096", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/attachment.cgi?id=12334", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + "https://ubuntu.com/security/notices/USN-4954-1", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2020-6096", + "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019" + ], + "PublishedDate": "2020-04-01T22:15:00Z", + "LastModifiedDate": "2022-11-21T19:39:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3326", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3326", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Assertion failure in ISO-2022-JP-3 gconv module related to combining characters", + "Description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-617" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/01/28/2", + "https://access.redhat.com/security/cve/CVE-2021-3326", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=2146", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3326", + "https://linux.oracle.com/cve/CVE-2021-3326.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210304-0007/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + "https://sourceware.org/pipermail/libc-alpha/2021-January/122058.html", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3326", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "PublishedDate": "2021-01-27T20:15:00Z", + "LastModifiedDate": "2022-11-04T20:07:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3999", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3999", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "Description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2023-02-12T23:43:00Z" + }, + { + "VulnerabilityID": "CVE-2016-10228", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10228", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: iconv program can hang when invoked with the -c option", + "Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://openwall.com/lists/oss-security/2017/03/01/10", + "http://www.securityfocus.com/bid/96525", + "https://access.redhat.com/security/cve/CVE-2016-10228", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10228", + "https://linux.oracle.com/cve/CVE-2016-10228.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2016-10228", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2017-03-02T01:59:00Z", + "LastModifiedDate": "2022-10-17T18:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-25013", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-25013", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: buffer over-read in iconv when processing invalid multi-byte input sequences in the EUC-KR encoding", + "Description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 7.1, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-25013", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-25013", + "https://linux.oracle.com/cve/CVE-2019-25013.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210205-0004/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2019-25013", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2021-01-04T18:15:00Z", + "LastModifiedDate": "2022-11-03T19:37:00Z" + }, + { + "VulnerabilityID": "CVE-2020-10029", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-10029", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions", + "Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:H", + "V3Score": 5.7 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + "https://access.redhat.com/security/cve/CVE-2020-10029", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10029", + "https://linux.oracle.com/cve/CVE-2020-10029.html", + "https://linux.oracle.com/errata/ELSA-2021-0348.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200327-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-10029" + ], + "PublishedDate": "2020-03-04T15:15:00Z", + "LastModifiedDate": "2022-11-10T03:31:00Z" + }, + { + "VulnerabilityID": "CVE-2020-27618", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-27618", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: iconv when processing invalid multi-byte input sequences fails to advance the input state, which could result in an infinite loop", + "Description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-835" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-27618", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27618", + "https://linux.oracle.com/cve/CVE-2020-27618.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210401-0006/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2020-27618", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "PublishedDate": "2021-02-26T23:15:00Z", + "LastModifiedDate": "2022-10-28T20:06:00Z" + }, + { + "VulnerabilityID": "CVE-2010-4756", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "Severity": "LOW", + "CweIDs": [ + "CWE-399" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V2Score": 4 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V2Score": 5 + } + }, + "References": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756" + ], + "PublishedDate": "2011-03-02T20:00:00Z", + "LastModifiedDate": "2021-09-01T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-20796", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796" + ], + "PublishedDate": "2019-02-26T02:29:00Z", + "LastModifiedDate": "2019-11-05T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010022", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack guard protection bypass", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2021-06-10T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010023", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "Description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010024", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: ASLR bypass using cache of thread stack and heap", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-200" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010025", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: information disclosure of heap addresses of pthread_created thread", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-330" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19126", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19126", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries", + "Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "Severity": "LOW", + "CweIDs": [ + "CWE-665" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19126", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19126", + "https://linux.oracle.com/cve/CVE-2019-19126.html", + "https://linux.oracle.com/errata/ELSA-2020-3861.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + "https://sourceware.org/ml/libc-alpha/2019-11/msg00649.html", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-19126" + ], + "PublishedDate": "2019-11-19T22:15:00Z", + "LastModifiedDate": "2022-11-08T03:16:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9192", + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192" + ], + "PublishedDate": "2019-02-26T18:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2021-27645", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc-bin@2.28-10", + "PkgName": "libc-bin", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-27645", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Use-after-free in addgetnetgrentX function in netgroupcache.c", + "Description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "Severity": "LOW", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 1.9, + "V3Score": 2.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-27645", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27645", + "https://linux.oracle.com/cve/CVE-2021-27645.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + "https://security.gentoo.org/glsa/202107-07", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27462", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2021-27645" + ], + "PublishedDate": "2021-02-24T15:15:00Z", + "LastModifiedDate": "2022-11-04T20:06:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33574", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33574", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: mq_notify does not handle separately allocated thread attributes", + "Description": "The mq_notify function in the GNU C Library (aka glibc) versions 2.32 and 2.33 has a use-after-free. It may use the notification thread attributes object (passed through its struct sigevent parameter) after it has been freed by the caller, leading to a denial of service (application crash) or possibly unspecified other impact.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-33574", + "https://linux.oracle.com/cve/CVE-2021-33574.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KJYYIMDDYOHTP2PORLABTOHYQYYREZDD/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RBUUWUGXVILQXVWEOU7N42ICHPJNAEUP/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33574", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210629-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27896#c1", + "https://www.cve.org/CVERecord?id=CVE-2021-33574" + ], + "PublishedDate": "2021-05-25T22:15:00Z", + "LastModifiedDate": "2022-11-08T13:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-35942", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-35942", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Arbitrary read in wordexp()", + "Description": "The wordexp function in the GNU C Library (aka glibc) through 2.33 may crash or read arbitrary memory in parse_param (in posix/wordexp.c) when called with an untrusted, crafted pattern, potentially resulting in a denial of service or disclosure of information. This occurs because atoi was used but strtoul should have been used to ensure correct calculations.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 9.1 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-35942.json", + "https://access.redhat.com/security/cve/CVE-2021-35942", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-35942", + "https://linux.oracle.com/cve/CVE-2021-35942.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-35942", + "https://security.gentoo.org/glsa/202208-24", + "https://security.netapp.com/advisory/ntap-20210827-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28011", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=5adda61f62b77384718b4c0d8336ade8f2b4b35c", + "https://sourceware.org/glibc/wiki/Security%20Exceptions", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-35942" + ], + "PublishedDate": "2021-07-22T18:15:00Z", + "LastModifiedDate": "2022-11-08T13:29:00Z" + }, + { + "VulnerabilityID": "CVE-2022-23218", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-23218", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Stack-based buffer overflow in svcunix_create via long pathnames", + "Description": "The deprecated compatibility function svcunix_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its path argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-120" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-23218", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23218", + "https://linux.oracle.com/cve/CVE-2022-23218.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23218", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28768", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23218", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-01-14T07:15:00Z", + "LastModifiedDate": "2022-11-08T13:37:00Z" + }, + { + "VulnerabilityID": "CVE-2022-23219", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-23219", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Stack-based buffer overflow in sunrpc clnt_create via a long pathname", + "Description": "The deprecated compatibility function clnt_create in the sunrpc module of the GNU C Library (aka glibc) through 2.34 copies its hostname argument on the stack without validating its length, which may result in a buffer overflow, potentially resulting in a denial of service or (if an application is not built with a stack protector enabled) arbitrary code execution.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-120" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-23219", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23219", + "https://linux.oracle.com/cve/CVE-2022-23219.html", + "https://linux.oracle.com/errata/ELSA-2022-9421.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-23219", + "https://security.gentoo.org/glsa/202208-24", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22542", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2022-23219", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-01-14T07:15:00Z", + "LastModifiedDate": "2022-11-08T13:32:00Z" + }, + { + "VulnerabilityID": "CVE-2020-1751", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1751", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: array overflow in backtrace functions for powerpc", + "Description": "An out-of-bounds write vulnerability was found in glibc before 2.31 when handling signal trampolines on PowerPC. Specifically, the backtrace function did not properly check the array bounds when storing the frame address, resulting in a denial of service or potential code execution. The highest threat from this vulnerability is to system availability.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 5.9, + "V3Score": 7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-1751", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1751", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1751", + "https://linux.oracle.com/cve/CVE-2020-1751.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1751", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200430-0002/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25423", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1751" + ], + "PublishedDate": "2020-04-17T19:15:00Z", + "LastModifiedDate": "2023-01-27T18:34:00Z" + }, + { + "VulnerabilityID": "CVE-2020-1752", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-1752", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: use-after-free in glob() function when expanding ~user", + "Description": "A use-after-free vulnerability introduced in glibc upstream version 2.14 was found in the way the tilde expansion was carried out. Directory paths containing an initial tilde followed by a valid username were affected by this issue. A local attacker could exploit this flaw by creating a specially crafted path that, when processed by the glob function, would potentially lead to arbitrary code execution. This was fixed in version 2.32.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 3.7, + "V3Score": 7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-1752", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-1752", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-1752", + "https://linux.oracle.com/cve/CVE-2020-1752.html", + "https://linux.oracle.com/errata/ELSA-2020-4444.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-1752", + "https://security.gentoo.org/glsa/202101-20", + "https://security.netapp.com/advisory/ntap-20200511-0005/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25414", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ddc650e9b3dc916eab417ce9f79e67337b05035c", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-1752" + ], + "PublishedDate": "2020-04-30T17:15:00Z", + "LastModifiedDate": "2022-10-28T20:06:00Z" + }, + { + "VulnerabilityID": "CVE-2020-6096", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-6096", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: signed comparison vulnerability in the ARMv7 memcpy function", + "Description": "An exploitable signed comparison vulnerability exists in the ARMv7 memcpy() implementation of GNU glibc 2.30.9000. Calling memcpy() (on ARMv7 targets that utilize the GNU glibc implementation) with a negative value for the 'num' parameter results in a signed comparison vulnerability. If an attacker underflows the 'num' parameter to memcpy(), this vulnerability could lead to undefined behavior such as writing to out-of-bounds memory and potentially remote code execution. Furthermore, this memcpy() implementation allows for program execution to continue in scenarios where a segmentation fault or crash should have occurred. The dangers occur in that subsequent execution and iterations of this code will be executed with this corrupted data.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-195" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-6096", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6096", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SPYXTDOOB4PQGTYAMZAZNJIB3FF6YQXI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/URXOIA2LDUKHQXK4BE55BQBRI6ZZG3Y6/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-6096", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/attachment.cgi?id=12334", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25620", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1019", + "https://ubuntu.com/security/notices/USN-4954-1", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2020-6096", + "https://www.talosintelligence.com/vulnerability_reports/TALOS-2020-1019" + ], + "PublishedDate": "2020-04-01T22:15:00Z", + "LastModifiedDate": "2022-11-21T19:39:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3326", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3326", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Assertion failure in ISO-2022-JP-3 gconv module related to combining characters", + "Description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid input sequences in the ISO-2022-JP-3 encoding, fails an assertion in the code path and aborts the program, potentially resulting in a denial of service.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-617" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/01/28/2", + "https://access.redhat.com/security/cve/CVE-2021-3326", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=2146", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3326", + "https://linux.oracle.com/cve/CVE-2021-3326.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3326", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210304-0007/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27256", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=7d88c6142c6efc160c0ee5e4f85cde382c072888", + "https://sourceware.org/pipermail/libc-alpha/2021-January/122058.html", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5699-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3326", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "PublishedDate": "2021-01-27T20:15:00Z", + "LastModifiedDate": "2022-11-04T20:07:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3999", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3999", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "Description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2023-02-12T23:43:00Z" + }, + { + "VulnerabilityID": "CVE-2016-10228", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-10228", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: iconv program can hang when invoked with the -c option", + "Description": "The iconv program in the GNU C Library (aka glibc or libc6) 2.31 and earlier, when invoked with multiple suffixes in the destination encoding (TRANSLATE or IGNORE) along with the -c option, enters an infinite loop when processing invalid multi-byte input sequences, leading to a denial of service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://openwall.com/lists/oss-security/2017/03/01/10", + "http://www.securityfocus.com/bid/96525", + "https://access.redhat.com/security/cve/CVE-2016-10228", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10228", + "https://linux.oracle.com/cve/CVE-2016-10228.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2016-10228", + "https://security.gentoo.org/glsa/202101-20", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2016-10228", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2017-03-02T01:59:00Z", + "LastModifiedDate": "2022-10-17T18:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-25013", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-25013", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: buffer over-read in iconv when processing invalid multi-byte input sequences in the EUC-KR encoding", + "Description": "The iconv feature in the GNU C Library (aka glibc or libc6) through 2.32, when processing invalid multi-byte input sequences in the EUC-KR encoding, may have a buffer over-read.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 7.1, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-25013", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-25013", + "https://linux.oracle.com/cve/CVE-2019-25013.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.apache.org/thread.html/r32d767ac804e9b8aad4355bb85960a6a1385eab7afff549a5e98660f@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r448bb851cc8e6e3f93f3c28c70032b37062625d81214744474ac49e7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r4806a391091e082bdea17266452ca656ebc176e51bb3932733b3a0a2@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r499e4f96d0b5109ef083f2feccd33c51650c1b7d7068aa3bd47efca9@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r5af4430421bb6f9973294691a7904bbd260937e9eef96b20556f43ff@%3Cjira.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r750eee18542bc02bd8350861c424ee60a9b9b225568fa09436a37ece@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/r7a2e94adfe0a2f0a1d42e4927e8c32ecac97d37db9cb68095fe9ddbc@%3Cdev.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rd2354f9ccce41e494fbadcbc5ad87218de6ec0fff8a7b54c8462226c@%3Cissues.zookeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4Y6TX47P47KABSFOL26FLDNVCWXDKDEZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TVCUNLQ3HXGS4VPUQKWTJGRAW2KTFGXS/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-25013", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210205-0004/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24973", + "https://sourceware.org/git/?p=glibc.git;a=commit;h=ee7a3144c9922808181009b7b3e50e852fb4999b", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2019-25013", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2021-01-04T18:15:00Z", + "LastModifiedDate": "2022-11-03T19:37:00Z" + }, + { + "VulnerabilityID": "CVE-2020-10029", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-10029", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack corruption from crafted input in cosl, sinl, sincosl, and tanl functions", + "Description": "The GNU C Library (aka glibc or libc6) before 2.32 could overflow an on-stack buffer during range reduction if an input to an 80-bit long double function contains a non-canonical bit pattern, a seen when passing a 0x5d414141414141410000 value to sinl on x86 targets. This is related to sysdeps/ieee754/ldbl-96/e_rem_pio2l.c.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:H", + "V3Score": 5.7 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00033.html", + "https://access.redhat.com/security/cve/CVE-2020-10029", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10029", + "https://linux.oracle.com/cve/CVE-2020-10029.html", + "https://linux.oracle.com/errata/ELSA-2021-0348.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/23N76M3EDP2GIW4GOIQRYTKRE7PPBRB2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZTFUD5VH2GU3YOXA2KBQSBIDZRDWNZ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU5JJGENOK7K4X5RYAA5PL647C6HD22E/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-10029", + "https://security.gentoo.org/glsa/202006-04", + "https://security.netapp.com/advisory/ntap-20200327-0003/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25487", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=9333498794cde1d5cca518badf79533a24114b6f", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-10029" + ], + "PublishedDate": "2020-03-04T15:15:00Z", + "LastModifiedDate": "2022-11-10T03:31:00Z" + }, + { + "VulnerabilityID": "CVE-2020-27618", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-27618", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: iconv when processing invalid multi-byte input sequences fails to advance the input state, which could result in an infinite loop", + "Description": "The iconv function in the GNU C Library (aka glibc or libc6) 2.32 and earlier, when processing invalid multi-byte input sequences in IBM1364, IBM1371, IBM1388, IBM1390, and IBM1399 encodings, fails to advance the input state, which could lead to an infinite loop in applications, resulting in a denial of service, a different vulnerability from CVE-2016-10228.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-835" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-27618", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-27618", + "https://linux.oracle.com/cve/CVE-2020-27618.html", + "https://linux.oracle.com/errata/ELSA-2021-9344.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2020-27618", + "https://security.gentoo.org/glsa/202107-07", + "https://security.netapp.com/advisory/ntap-20210401-0006/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=19519#c21", + "https://sourceware.org/bugzilla/show_bug.cgi?id=26224", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5768-1", + "https://www.cve.org/CVERecord?id=CVE-2020-27618", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html" + ], + "PublishedDate": "2021-02-26T23:15:00Z", + "LastModifiedDate": "2022-10-28T20:06:00Z" + }, + { + "VulnerabilityID": "CVE-2010-4756", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "Severity": "LOW", + "CweIDs": [ + "CWE-399" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V2Score": 4 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V2Score": 5 + } + }, + "References": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756" + ], + "PublishedDate": "2011-03-02T20:00:00Z", + "LastModifiedDate": "2021-09-01T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-20796", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796" + ], + "PublishedDate": "2019-02-26T02:29:00Z", + "LastModifiedDate": "2019-11-05T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010022", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack guard protection bypass", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2021-06-10T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010023", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "Description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010024", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: ASLR bypass using cache of thread stack and heap", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-200" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010025", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: information disclosure of heap addresses of pthread_created thread", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-330" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19126", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19126", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: LD_PREFER_MAP_32BIT_EXEC not ignored in setuid binaries", + "Description": "On the x86-64 architecture, the GNU C Library (aka glibc) before 2.31 fails to ignore the LD_PREFER_MAP_32BIT_EXEC environment variable during program execution after a security transition, allowing local attackers to restrict the possible mapping addresses for loaded libraries and thus bypass ASLR for a setuid program.", + "Severity": "LOW", + "CweIDs": [ + "CWE-665" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19126", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19126", + "https://linux.oracle.com/cve/CVE-2019-19126.html", + "https://linux.oracle.com/errata/ELSA-2020-3861.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4FQ5LC6JOYSOYFPRUZ4S45KL6IP3RPPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFJ5E7NWOL6ROE5QVICHKIOUGCPFJVUH/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19126", + "https://sourceware.org/bugzilla/show_bug.cgi?id=25204", + "https://sourceware.org/ml/libc-alpha/2019-11/msg00649.html", + "https://ubuntu.com/security/notices/USN-4416-1", + "https://usn.ubuntu.com/4416-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-19126" + ], + "PublishedDate": "2019-11-19T22:15:00Z", + "LastModifiedDate": "2022-11-08T03:16:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9192", + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192" + ], + "PublishedDate": "2019-02-26T18:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2021-27645", + "VendorIDs": [ + "DLA-3152-1" + ], + "PkgID": "libc6@2.28-10", + "PkgName": "libc6", + "InstalledVersion": "2.28-10", + "FixedVersion": "2.28-10+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-27645", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Use-after-free in addgetnetgrentX function in netgroupcache.c", + "Description": "The nameserver caching daemon (nscd) in the GNU C Library (aka glibc or libc6) 2.29 through 2.33, when processing a request for netgroup lookup, may crash due to a double-free, potentially resulting in degraded service or Denial of Service on the local system. This is related to netgroupcache.c.", + "Severity": "LOW", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 1.9, + "V3Score": 2.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-27645", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27645", + "https://linux.oracle.com/cve/CVE-2021-27645.html", + "https://linux.oracle.com/errata/ELSA-2021-9560.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7LZNT6KTMCCWPWXEOGSHD3YLYZKUGMH5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I7TS26LIZSOBLGJEZMJX4PXT5BQDE2WS/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-27645", + "https://security.gentoo.org/glsa/202107-07", + "https://sourceware.org/bugzilla/show_bug.cgi?id=27462", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://www.cve.org/CVERecord?id=CVE-2021-27645" + ], + "PublishedDate": "2021-02-24T15:15:00Z", + "LastModifiedDate": "2022-11-04T20:06:00Z" + }, + { + "VulnerabilityID": "CVE-2019-8457", + "PkgID": "libdb5.3@5.3.28+dfsg1-0.5", + "PkgName": "libdb5.3", + "InstalledVersion": "5.3.28+dfsg1-0.5", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-8457", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "sqlite: heap out-of-bound read in function rtreenode()", + "Description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + "https://access.redhat.com/security/cve/CVE-2019-8457", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://linux.oracle.com/cve/CVE-2019-8457.html", + "https://linux.oracle.com/errata/ELSA-2020-1810.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + "https://security.netapp.com/advisory/ntap-20190606-0002/", + "https://ubuntu.com/security/notices/USN-4004-1", + "https://ubuntu.com/security/notices/USN-4004-2", + "https://ubuntu.com/security/notices/USN-4019-1", + "https://ubuntu.com/security/notices/USN-4019-2", + "https://usn.ubuntu.com/4004-1/", + "https://usn.ubuntu.com/4004-2/", + "https://usn.ubuntu.com/4019-1/", + "https://usn.ubuntu.com/4019-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-8457", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.sqlite.org/releaselog/3_28_0.html", + "https://www.sqlite.org/src/info/90acdbfce9c08858" + ], + "PublishedDate": "2019-05-30T16:29:00Z", + "LastModifiedDate": "2021-07-31T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-12886", + "PkgID": "libgcc1@1:8.3.0-6", + "PkgName": "libgcc1", + "InstalledVersion": "1:8.3.0-6", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12886", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass", + "Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H", + "V3Score": 6.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-12886", + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379\u0026view=markup", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "https://www.cve.org/CVERecord?id=CVE-2018-12886", + "https://www.gnu.org/software/gcc/gcc-8/changes.html" + ], + "PublishedDate": "2019-05-22T19:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2019-15847", + "PkgID": "libgcc1@1:8.3.0-6", + "PkgName": "libgcc1", + "InstalledVersion": "1:8.3.0-6", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15847", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gcc: POWER9 \"DARN\" RNG intrinsic produces repeated output", + "Description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-331" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + "https://access.redhat.com/security/cve/CVE-2019-15847", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + "https://linux.oracle.com/cve/CVE-2019-15847.html", + "https://linux.oracle.com/errata/ELSA-2020-1864.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + "https://www.cve.org/CVERecord?id=CVE-2019-15847" + ], + "PublishedDate": "2019-09-02T23:15:00Z", + "LastModifiedDate": "2020-09-17T13:38:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33560", + "PkgID": "libgcrypt20@1.8.4-5", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.4-5", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33560", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm", + "Description": "Libgcrypt before 1.8.8 and 1.9.x before 1.9.3 mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm, and the window size is not chosen appropriately. This, for example, affects use of ElGamal in OpenPGP.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + "https://access.redhat.com/security/cve/CVE-2021-33560", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + "https://dev.gnupg.org/T5305", + "https://dev.gnupg.org/T5328", + "https://dev.gnupg.org/T5466", + "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2021-4409.html", + "https://linux.oracle.com/cve/CVE-2021-33560.html", + "https://linux.oracle.com/errata/ELSA-2022-9263.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33560", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-06-08T11:15:00Z", + "LastModifiedDate": "2022-12-07T01:20:00Z" + }, + { + "VulnerabilityID": "CVE-2019-13627", + "PkgID": "libgcrypt20@1.8.4-5", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.4-5", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-13627", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: ECDSA timing attack allowing private key leak", + "Description": "It was discovered that there was a ECDSA timing attack in the libgcrypt20 cryptographic library. Version affected: 1.8.4-5, 1.7.6-2+deb9u3, and 1.6.3-2+deb8u4. Versions fixed: 1.8.5-2 and 1.6.3-2+deb8u7.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:N", + "V2Score": 2.6, + "V3Score": 6.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:N", + "V3Score": 6.3 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00060.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00018.html", + "http://www.openwall.com/lists/oss-security/2019/10/02/2", + "https://access.redhat.com/security/cve/CVE-2019-13627", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-13627", + "https://dev.gnupg.org/T4683", + "https://github.com/gpg/libgcrypt/releases/tag/libgcrypt-1.8.5", + "https://linux.oracle.com/cve/CVE-2019-13627.html", + "https://linux.oracle.com/errata/ELSA-2020-4482.html", + "https://lists.debian.org/debian-lts-announce/2019/09/msg00024.html", + "https://lists.debian.org/debian-lts-announce/2020/01/msg00001.html", + "https://minerva.crocs.fi.muni.cz/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-13627", + "https://security-tracker.debian.org/tracker/CVE-2019-13627", + "https://security.gentoo.org/glsa/202003-32", + "https://ubuntu.com/security/notices/USN-4236-1", + "https://ubuntu.com/security/notices/USN-4236-2", + "https://ubuntu.com/security/notices/USN-4236-3", + "https://usn.ubuntu.com/4236-1/", + "https://usn.ubuntu.com/4236-2/", + "https://usn.ubuntu.com/4236-3/", + "https://www.cve.org/CVERecord?id=CVE-2019-13627" + ], + "PublishedDate": "2019-09-25T15:15:00Z", + "LastModifiedDate": "2021-07-21T11:39:00Z" + }, + { + "VulnerabilityID": "CVE-2021-40528", + "PkgID": "libgcrypt20@1.8.4-5", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.4-5", + "FixedVersion": "1.8.4-5+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-40528", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "ElGamal implementation allows plaintext recovery", + "Description": "The ElGamal implementation in Libgcrypt before 1.9.4 allows plaintext recovery because, during interaction between two cryptographic libraries, a certain dangerous combination of the prime defined by the receiver's public key, the generator defined by the receiver's public key, and the sender's ephemeral exponents can lead to a cross-configuration attack against OpenPGP.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:H/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 2.6, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:5311", + "https://access.redhat.com/security/cve/CVE-2021-40528", + "https://bugzilla.redhat.com/2002816", + "https://bugzilla.redhat.com/show_bug.cgi?id=2002816", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-40528", + "https://dev.gnupg.org/rCb118681ebc4c9ea4b9da79b0f9541405a64f4c13", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2022-5311.html", + "https://errata.rockylinux.org/RLSA-2022:5311", + "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=commit;h=3462280f2e23e16adf3ed5176e0f2413d8861320", + "https://ibm.github.io/system-security-research-updates/2021/07/20/insecurity-elgamal-pt1", + "https://ibm.github.io/system-security-research-updates/2021/09/06/insecurity-elgamal-pt2", + "https://linux.oracle.com/cve/CVE-2021-40528.html", + "https://linux.oracle.com/errata/ELSA-2022-9564.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-40528", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-40528" + ], + "PublishedDate": "2021-09-06T19:15:00Z", + "LastModifiedDate": "2022-12-07T01:36:00Z" + }, + { + "VulnerabilityID": "CVE-2018-6829", + "PkgID": "libgcrypt20@1.8.4-5", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.4-5", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6829", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: ElGamal implementation doesn't have semantic security due to incorrectly encoded plaintexts possibly allowing to obtain sensitive information", + "Description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-6829", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + "https://www.cve.org/CVERecord?id=CVE-2018-6829", + "https://www.oracle.com/security-alerts/cpujan2020.html" + ], + "PublishedDate": "2018-02-07T23:29:00Z", + "LastModifiedDate": "2020-01-15T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-43618", + "PkgID": "libgmp10@2:6.1.2+dfsg-4", + "PkgName": "libgmp10", + "InstalledVersion": "2:6.1.2+dfsg-4", + "FixedVersion": "2:6.1.2+dfsg-4+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-43618", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Integer overflow and resultant buffer overflow via crafted input", + "Description": "GNU Multiple Precision Arithmetic Library (GMP) through 6.2.1 has an mpz/inp_raw.c integer overflow and resultant buffer overflow via crafted input, leading to a segmentation fault on 32-bit platforms.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/8", + "http://www.openwall.com/lists/oss-security/2022/10/13/3", + "https://access.redhat.com/security/cve/CVE-2021-43618", + "https://bugs.debian.org/994405", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-43618", + "https://gmplib.org/list-archives/gmp-bugs/2021-September/005077.html", + "https://gmplib.org/repo/gmp-6.2/rev/561a9c25298e", + "https://lists.debian.org/debian-lts-announce/2021/12/msg00001.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43618", + "https://security.netapp.com/advisory/ntap-20221111-0001/", + "https://ubuntu.com/security/notices/USN-5672-1", + "https://ubuntu.com/security/notices/USN-5672-2", + "https://www.cve.org/CVERecord?id=CVE-2021-43618" + ], + "PublishedDate": "2021-11-15T04:15:00Z", + "LastModifiedDate": "2022-12-08T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-20231", + "PkgID": "libgnutls30@3.6.7-4+deb10u6", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u6", + "FixedVersion": "3.6.7-4+deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-20231", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gnutls: Use after free in client key_share extension", + "Description": "A flaw was found in gnutls. A use after free issue in client sending key_share extension may lead to memory corruption and other consequences.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-20231", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://gitlab.com/gnutls/gnutls/-/issues/1151", + "https://linux.oracle.com/cve/CVE-2021-20231.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.apache.org/thread.html/r50661d6f0082709aad9a584431b59ec364f9974b63b07e0800230168@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5d4001031e7790d8c6396c499522b4ed2aab782da87b1a14184793bb@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5f88bed447742fcc5c47bf1c7be965ef450131914a6e1f85feba2779@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r6ac143ba6dd98bd4bf6bf010d46e56e254056459721ba18822d611f7@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r9cbc69e57276413788e90a6ee16c7c034ea4258d31935b70db2bd158@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rcd70a4c88a47a75fd2d5f3ffb7cee8c2a18c713320bd90fdcb57495f@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rf5e1256d870193def4a82ad89ab95e63943a313b5ff0d81aa87e4532@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rfd5273d72d244178441e6904a2f2b41a3268f569e8092ea0b3b2bb20@%3Cissues.spark.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OSLAE6PP33A7VYRYMYMUVB3U6B26GZER/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20231", + "https://security.netapp.com/advisory/ntap-20210416-0005/", + "https://ubuntu.com/security/notices/USN-5029-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20231", + "https://www.gnutls.org/security-new.html#GNUTLS-SA-2021-03-10" + ], + "PublishedDate": "2021-03-12T19:15:00Z", + "LastModifiedDate": "2021-06-01T14:07:00Z" + }, + { + "VulnerabilityID": "CVE-2021-20232", + "PkgID": "libgnutls30@3.6.7-4+deb10u6", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u6", + "FixedVersion": "3.6.7-4+deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-20232", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gnutls: Use after free in client_send_params in lib/ext/pre_shared_key.c", + "Description": "A flaw was found in gnutls. A use after free issue in client_send_params in lib/ext/pre_shared_key.c may lead to memory corruption and other potential consequences.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-20232", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://gitlab.com/gnutls/gnutls/-/issues/1151", + "https://linux.oracle.com/cve/CVE-2021-20232.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.apache.org/thread.html/r50661d6f0082709aad9a584431b59ec364f9974b63b07e0800230168@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5d4001031e7790d8c6396c499522b4ed2aab782da87b1a14184793bb@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r5f88bed447742fcc5c47bf1c7be965ef450131914a6e1f85feba2779@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r6ac143ba6dd98bd4bf6bf010d46e56e254056459721ba18822d611f7@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/r9cbc69e57276413788e90a6ee16c7c034ea4258d31935b70db2bd158@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rcd70a4c88a47a75fd2d5f3ffb7cee8c2a18c713320bd90fdcb57495f@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rf5e1256d870193def4a82ad89ab95e63943a313b5ff0d81aa87e4532@%3Cissues.spark.apache.org%3E", + "https://lists.apache.org/thread.html/rfd5273d72d244178441e6904a2f2b41a3268f569e8092ea0b3b2bb20@%3Cissues.spark.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OSLAE6PP33A7VYRYMYMUVB3U6B26GZER/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20232", + "https://security.netapp.com/advisory/ntap-20210416-0005/", + "https://ubuntu.com/security/notices/USN-5029-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20232", + "https://www.gnutls.org/security-new.html#GNUTLS-SA-2021-03-10" + ], + "PublishedDate": "2021-03-12T19:15:00Z", + "LastModifiedDate": "2021-05-17T14:30:00Z" + }, + { + "VulnerabilityID": "CVE-2020-24659", + "PkgID": "libgnutls30@3.6.7-4+deb10u6", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u6", + "FixedVersion": "3.6.7-4+deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-24659", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gnutls: Heap buffer overflow in handshake with no_renegotiation alert sent", + "Description": "An issue was discovered in GnuTLS before 3.6.15. A server can trigger a NULL pointer dereference in a TLS 1.3 client if a no_renegotiation alert is sent with unexpected timing, and then an invalid second handshake occurs. The crash happens in the application's error handling path, where the gnutls_deinit function is called after detecting a handshake failure.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787", + "CWE-476" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-10/msg00054.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-10/msg00060.html", + "https://access.redhat.com/security/cve/CVE-2020-24659", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-24659", + "https://gitlab.com/gnutls/gnutls/-/issues/1071", + "https://linux.oracle.com/cve/CVE-2020-24659.html", + "https://linux.oracle.com/errata/ELSA-2020-5483.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/62BUAI4FQQLG6VTKRT7SUZPGJJ4NASQ3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AWN56FDLQQXT2D2YHNI4TYH432TDMQ7N/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-24659", + "https://security.gentoo.org/glsa/202009-01", + "https://security.netapp.com/advisory/ntap-20200911-0006/", + "https://ubuntu.com/security/notices/USN-4491-1", + "https://usn.ubuntu.com/4491-1/", + "https://www.cve.org/CVERecord?id=CVE-2020-24659", + "https://www.gnutls.org/security-new.html#GNUTLS-SA-2020-09-04" + ], + "PublishedDate": "2020-09-04T15:15:00Z", + "LastModifiedDate": "2023-02-27T15:30:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2509", + "VendorIDs": [ + "DLA-3070-1" + ], + "PkgID": "libgnutls30@3.6.7-4+deb10u6", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u6", + "FixedVersion": "3.6.7-4+deb10u9", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2509", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Double free during gnutls_pkcs7_verify", + "Description": "A vulnerability found in gnutls. This security flaw happens because of a double free error occurs during verification of pkcs7 signatures in gnutls_pkcs7_verify function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6854", + "https://access.redhat.com/security/cve/CVE-2022-2509", + "https://bugzilla.redhat.com/2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2076626", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108635", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2119770", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2509", + "https://errata.almalinux.org/9/ALSA-2022-6854.html", + "https://errata.rockylinux.org/RLSA-2022:6854", + "https://gnutls.org/security-new.html (GNUTLS-SA-2022-07-07)", + "https://gnutls.org/security-new.html#GNUTLS-SA-2022-07-07", + "https://linux.oracle.com/cve/CVE-2022-2509.html", + "https://linux.oracle.com/errata/ELSA-2022-7105.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00002.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6FL27JS3VM74YEQU7PGB62USO3KSBYZX/", + "https://lists.gnupg.org/pipermail/gnutls-help/2022-July/004746.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2509", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2509", + "https://www.debian.org/security/2022/dsa-5203" + ], + "PublishedDate": "2022-08-01T14:15:00Z", + "LastModifiedDate": "2022-08-19T12:10:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0361", + "VendorIDs": [ + "DLA-3321-1" + ], + "PkgID": "libgnutls30@3.6.7-4+deb10u6", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u6", + "FixedVersion": "3.6.7-4+deb10u10", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0361", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing side-channel in the TLS RSA key exchange code", + "Description": "A timing side-channel in the handling of RSA ClientKeyExchange messages was discovered in GnuTLS. This side-channel can be sufficient to recover the key encrypted in the RSA ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption the attacker would need to send a large amount of specially crafted messages to the vulnerable server. By recovering the secret from the ClientKeyExchange message, the attacker would be able to decrypt the application data exchanged over that connection.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:1141", + "https://access.redhat.com/security/cve/CVE-2023-0361", + "https://bugzilla.redhat.com/2162596", + "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + "https://errata.almalinux.org/9/ALSA-2023-1141.html", + "https://errata.rockylinux.org/RLSA-2023:1569", + "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + "https://gitlab.com/gnutls/gnutls/-/issues/1050", + "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + "https://linux.oracle.com/cve/CVE-2023-0361.html", + "https://linux.oracle.com/errata/ELSA-2023-1569.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + "https://security.netapp.com/advisory/ntap-20230324-0005/", + "https://ubuntu.com/security/notices/USN-5901-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0361" + ], + "PublishedDate": "2023-02-15T18:15:00Z", + "LastModifiedDate": "2023-05-23T17:22:00Z" + }, + { + "VulnerabilityID": "CVE-2021-4209", + "VendorIDs": [ + "DLA-3070-1" + ], + "PkgID": "libgnutls30@3.6.7-4+deb10u6", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u6", + "FixedVersion": "3.6.7-4+deb10u9", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-4209", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "GnuTLS: Null pointer dereference in MD_UPDATE", + "Description": "A NULL pointer dereference flaw was found in GnuTLS. As Nettle's hash update functions internally call memcpy, providing zero-length input may cause undefined behavior. This flaw leads to a denial of service after authentication in rare circumstances.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-4209", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044156", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-4209", + "https://gitlab.com/gnutls/gnutls/-/commit/3db352734472d851318944db13be73da61300568", + "https://gitlab.com/gnutls/gnutls/-/issues/1306", + "https://gitlab.com/gnutls/gnutls/-/merge_requests/1503", + "https://nvd.nist.gov/vuln/detail/CVE-2021-4209", + "https://security.netapp.com/advisory/ntap-20220915-0005/", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://ubuntu.com/security/notices/USN-5750-1", + "https://www.cve.org/CVERecord?id=CVE-2021-4209" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2022-10-27T16:57:00Z" + }, + { + "VulnerabilityID": "CVE-2011-3389", + "PkgID": "libgnutls30@3.6.7-4+deb10u6", + "PkgName": "libgnutls30", + "InstalledVersion": "3.6.7-4+deb10u6", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3389", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)", + "Description": "The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a \"BEAST\" attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V2Score": 4.3 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V2Score": 4.3 + } + }, + "References": [ + "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + "http://curl.haxx.se/docs/adv_20120124B.html", + "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + "http://ekoparty.org/2011/juliano-rizzo.php", + "http://eprint.iacr.org/2004/111", + "http://eprint.iacr.org/2006/136", + "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + "http://marc.info/?l=bugtraq\u0026m=132750579901589\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=132872385320240\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=133365109612558\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=133728004526190\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=134254866602253\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=134254957702612\u0026w=2", + "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + "http://osvdb.org/74829", + "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + "http://secunia.com/advisories/45791", + "http://secunia.com/advisories/47998", + "http://secunia.com/advisories/48256", + "http://secunia.com/advisories/48692", + "http://secunia.com/advisories/48915", + "http://secunia.com/advisories/48948", + "http://secunia.com/advisories/49198", + "http://secunia.com/advisories/55322", + "http://secunia.com/advisories/55350", + "http://secunia.com/advisories/55351", + "http://security.gentoo.org/glsa/glsa-201203-02.xml", + "http://security.gentoo.org/glsa/glsa-201406-32.xml", + "http://support.apple.com/kb/HT4999", + "http://support.apple.com/kb/HT5001", + "http://support.apple.com/kb/HT5130", + "http://support.apple.com/kb/HT5281", + "http://support.apple.com/kb/HT5501", + "http://support.apple.com/kb/HT6150", + "http://technet.microsoft.com/security/advisory/2588513", + "http://vnhacker.blogspot.com/2011/09/beast.html", + "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + "http://www.debian.org/security/2012/dsa-2398", + "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + "http://www.ibm.com/developerworks/java/jdk/alerts/", + "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + "http://www.insecure.cl/Beast-SSL.rar", + "http://www.kb.cert.org/vuls/id/864643", + "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + "http://www.opera.com/docs/changelogs/mac/1151/", + "http://www.opera.com/docs/changelogs/mac/1160/", + "http://www.opera.com/docs/changelogs/unix/1151/", + "http://www.opera.com/docs/changelogs/unix/1160/", + "http://www.opera.com/docs/changelogs/windows/1151/", + "http://www.opera.com/docs/changelogs/windows/1160/", + "http://www.opera.com/support/kb/view/1004/", + "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + "http://www.securityfocus.com/bid/49388", + "http://www.securityfocus.com/bid/49778", + "http://www.securitytracker.com/id/1029190", + "http://www.securitytracker.com/id?1025997", + "http://www.securitytracker.com/id?1026103", + "http://www.securitytracker.com/id?1026704", + "http://www.ubuntu.com/usn/USN-1263-1", + "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + "https://access.redhat.com/security/cve/CVE-2011-3389", + "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + "https://bugzilla.novell.com/show_bug.cgi?id=719047", + "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + "https://hermes.opensuse.org/messages/13154861", + "https://hermes.opensuse.org/messages/13155432", + "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + "https://linux.oracle.com/cve/CVE-2011-3389.html", + "https://linux.oracle.com/errata/ELSA-2011-1380.html", + "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + "https://ubuntu.com/security/notices/USN-1263-1", + "https://www.cve.org/CVERecord?id=CVE-2011-3389" + ], + "PublishedDate": "2011-09-06T19:55:00Z", + "LastModifiedDate": "2022-11-29T15:56:00Z" + }, + { + "VulnerabilityID": "CVE-2021-20305", + "VendorIDs": [ + "DSA-4933-1" + ], + "PkgID": "libhogweed4@3.4.1-1", + "PkgName": "libhogweed4", + "InstalledVersion": "3.4.1-1", + "FixedVersion": "3.4.1-1+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-20305", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "nettle: Out of bounds memory access in signature verification", + "Description": "A flaw was found in Nettle in versions before 3.7.2, where several Nettle signature verification functions (GOST DSA, EDDSA \u0026 ECDSA) result in the Elliptic Curve Cryptography point (ECC) multiply function being called with out-of-range scalers, possibly resulting in incorrect results. This flaw allows an attacker to force an invalid signature, causing an assertion failure or possible validation. The highest threat to this vulnerability is to confidentiality, integrity, as well as system availability.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-20305", + "https://bugzilla.redhat.com/show_bug.cgi?id=1942533", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20305", + "https://linux.oracle.com/cve/CVE-2021-20305.html", + "https://linux.oracle.com/errata/ELSA-2021-1206.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MQKWVVMAIDAJ7YAA3VVO32BHLDOH2E63/", + "https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009457.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20305", + "https://security.gentoo.org/glsa/202105-31", + "https://security.netapp.com/advisory/ntap-20211022-0002/", + "https://ubuntu.com/security/notices/USN-4906-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20305", + "https://www.debian.org/security/2021/dsa-4933" + ], + "PublishedDate": "2021-04-05T22:15:00Z", + "LastModifiedDate": "2021-12-06T13:57:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3580", + "VendorIDs": [ + "DSA-4933-1" + ], + "PkgID": "libhogweed4@3.4.1-1", + "PkgName": "libhogweed4", + "InstalledVersion": "3.4.1-1", + "FixedVersion": "3.4.1-1+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3580", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "nettle: Remote crash in RSA decryption via manipulated ciphertext", + "Description": "A flaw was found in the way nettle's RSA decryption functions handled specially crafted ciphertext. An attacker could use this flaw to provide a manipulated ciphertext leading to application crash and denial of service.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-3580", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://linux.oracle.com/cve/CVE-2021-3580.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3580", + "https://security.netapp.com/advisory/ntap-20211104-0006/", + "https://ubuntu.com/security/notices/USN-4990-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3580" + ], + "PublishedDate": "2021-08-05T21:15:00Z", + "LastModifiedDate": "2021-11-26T21:06:00Z" + }, + { + "VulnerabilityID": "CVE-2019-12290", + "PkgID": "libidn2-0@2.0.5-1+deb10u1", + "PkgName": "libidn2-0", + "InstalledVersion": "2.0.5-1+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-12290", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specifi ...", + "Description": "GNU libidn2 before 2.2.0 fails to perform the roundtrip checks specified in RFC3490 Section 4.2 when converting A-labels to U-labels. This makes it possible in some circumstances for one domain to impersonate another. By creating a malicious domain that matches a target domain except for the inclusion of certain punycoded Unicode characters (that would be discarded when converted first to a Unicode label and then back to an ASCII label), arbitrary domains can be impersonated.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00008.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-12/msg00009.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12290", + "https://gitlab.com/libidn/libidn2/commit/241e8f486134793cb0f4a5b0e5817a97883401f5", + "https://gitlab.com/libidn/libidn2/commit/614117ef6e4c60e1950d742e3edf0a0ef8d389de", + "https://gitlab.com/libidn/libidn2/merge_requests/71", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3UFT76Y7OSGPZV3EBEHD6ISVUM3DLARM/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KXDKYWFV6N2HHVSE67FFDM7G3FEL2ZNE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ONG3GJRRJO35COPGVJXXSZLU4J5Y42AT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RSI4TI2JTQWQ3YEUX5X36GTVGKO4QKZ5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U6ZXL2RDNQRAHCMKWPOMJFKYJ344X4HL/", + "https://security.gentoo.org/glsa/202003-63", + "https://ubuntu.com/security/notices/USN-4168-1", + "https://usn.ubuntu.com/4168-1/" + ], + "PublishedDate": "2019-10-22T16:15:00Z", + "LastModifiedDate": "2019-10-29T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "libip4tc2@1.8.5-3~bpo10+1", + "PkgName": "libip4tc2", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:76e904deb6ef7af062ebd0819238b36a65ce5289960e2539e40b30416bd16f9f", + "DiffID": "sha256:3cf1454ee1bfffc50cc60cfd7c733db1e9837df1ae9cb58e93f62cc3a2516c57" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2019-11360", + "PkgID": "libip4tc2@1.8.5-3~bpo10+1", + "PkgName": "libip4tc2", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:76e904deb6ef7af062ebd0819238b36a65ce5289960e2539e40b30416bd16f9f", + "DiffID": "sha256:3cf1454ee1bfffc50cc60cfd7c733db1e9837df1ae9cb58e93f62cc3a2516c57" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11360", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: buffer overflow in iptables-restore", + "Description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:S/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 3.5, + "V3Score": 4.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.2 + } + }, + "References": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360" + ], + "PublishedDate": "2019-07-12T14:15:00Z", + "LastModifiedDate": "2021-07-21T11:39:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "libip6tc2@1.8.5-3~bpo10+1", + "PkgName": "libip6tc2", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:76e904deb6ef7af062ebd0819238b36a65ce5289960e2539e40b30416bd16f9f", + "DiffID": "sha256:3cf1454ee1bfffc50cc60cfd7c733db1e9837df1ae9cb58e93f62cc3a2516c57" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2019-11360", + "PkgID": "libip6tc2@1.8.5-3~bpo10+1", + "PkgName": "libip6tc2", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:76e904deb6ef7af062ebd0819238b36a65ce5289960e2539e40b30416bd16f9f", + "DiffID": "sha256:3cf1454ee1bfffc50cc60cfd7c733db1e9837df1ae9cb58e93f62cc3a2516c57" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11360", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: buffer overflow in iptables-restore", + "Description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:S/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 3.5, + "V3Score": 4.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.2 + } + }, + "References": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360" + ], + "PublishedDate": "2019-07-12T14:15:00Z", + "LastModifiedDate": "2021-07-21T11:39:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3520", + "VendorIDs": [ + "DSA-4919-1" + ], + "PkgID": "liblz4-1@1.8.3-1", + "PkgName": "liblz4-1", + "InstalledVersion": "1.8.3-1", + "FixedVersion": "1.8.3-1+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3520", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "memory corruption due to an integer overflow bug caused by memmove argument", + "Description": "There's a flaw in lz4. An attacker who submits a crafted file to an application linked with lz4 may be able to trigger an integer overflow, leading to calling of memmove() on a negative size argument, causing an out-of-bounds write and/or a crash. The greatest impact of this flaw is to availability, with some potential impact to confidentiality and integrity as well.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-787", + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 8.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-3520", + "https://bugzilla.redhat.com/show_bug.cgi?id=1954559", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3520", + "https://errata.almalinux.org/8/ALSA-2021-2575.html", + "https://errata.rockylinux.org/RLSA-2021:2575", + "https://github.com/lz4/lz4/pull/972", + "https://linux.oracle.com/cve/CVE-2021-3520.html", + "https://linux.oracle.com/errata/ELSA-2021-2575.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3520", + "https://security.netapp.com/advisory/ntap-20211104-0005/", + "https://ubuntu.com/security/notices/USN-4968-1", + "https://ubuntu.com/security/notices/USN-4968-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3520", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-06-02T13:15:00Z", + "LastModifiedDate": "2023-02-12T23:41:00Z" + }, + { + "VulnerabilityID": "CVE-2019-17543", + "PkgID": "liblz4-1@1.8.3-1", + "PkgName": "liblz4-1", + "InstalledVersion": "1.8.3-1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-17543", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "lz4: heap-based buffer overflow in LZ4_write32", + "Description": "LZ4 before 1.9.2 has a heap-based buffer overflow in LZ4_write32 (related to LZ4_compress_destSize), affecting applications that call LZ4_compress_fast with a large input. (This issue can also lead to data corruption.) NOTE: the vendor states \"only a few specific / uncommon usages of the API are at risk.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00069.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00070.html", + "https://access.redhat.com/security/cve/CVE-2019-17543", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=15941", + "https://github.com/lz4/lz4/compare/v1.9.1...v1.9.2", + "https://github.com/lz4/lz4/issues/801", + "https://github.com/lz4/lz4/pull/756", + "https://github.com/lz4/lz4/pull/760", + "https://lists.apache.org/thread.html/25015588b770d67470b7ba7ea49a305d6735dd7f00eabe7d50ec1e17@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/543302d55e2d2da4311994e9b0debdc676bf3fd05e1a2be3407aa2d6@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/793012683dc0fa6819b7c2560e6cf990811014c40c7d75412099c357@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/9ff0606d16be2ab6a81619e1c9e23c3e251756638e36272c8c8b7fa3@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/f0038c4fab2ee25aee849ebeff6b33b3aa89e07ccfb06b5c87b36316@%3Cissues.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/f506bc371d4a068d5d84d7361293568f61167d3a1c3e91f0def2d7d3@%3Cdev.arrow.apache.org%3E", + "https://lists.apache.org/thread.html/r0fb226357e7988a241b06b93bab065bcea2eb38658b382e485960e26@%3Cissues.kudu.apache.org%3E", + "https://lists.apache.org/thread.html/r4068ba81066792f2b4d208b39c4c4713c5d4c79bd8cb6c1904af5720@%3Cissues.kudu.apache.org%3E", + "https://lists.apache.org/thread.html/r7bc72200f94298bc9a0e35637f388deb53467ca4b2e2ad1ff66d8960@%3Cissues.kudu.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-17543", + "https://security.netapp.com/advisory/ntap-20210723-0001/", + "https://www.cve.org/CVERecord?id=CVE-2019-17543", + "https://www.oracle.com//security-alerts/cpujul2021.html", + "https://www.oracle.com/security-alerts/cpuoct2020.html" + ], + "PublishedDate": "2019-10-14T02:15:00Z", + "LastModifiedDate": "2021-07-23T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1271", + "VendorIDs": [ + "DSA-5123-1" + ], + "PkgID": "liblzma5@5.2.4-1", + "PkgName": "liblzma5", + "InstalledVersion": "5.2.4-1", + "FixedVersion": "5.2.4-1+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1271", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "arbitrary-file-write vulnerability", + "Description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8" + ], + "PublishedDate": "2022-08-31T16:15:00Z", + "LastModifiedDate": "2022-10-07T14:14:00Z" + }, + { + "VulnerabilityID": "CVE-2021-20305", + "VendorIDs": [ + "DSA-4933-1" + ], + "PkgID": "libnettle6@3.4.1-1", + "PkgName": "libnettle6", + "InstalledVersion": "3.4.1-1", + "FixedVersion": "3.4.1-1+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-20305", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "nettle: Out of bounds memory access in signature verification", + "Description": "A flaw was found in Nettle in versions before 3.7.2, where several Nettle signature verification functions (GOST DSA, EDDSA \u0026 ECDSA) result in the Elliptic Curve Cryptography point (ECC) multiply function being called with out-of-range scalers, possibly resulting in incorrect results. This flaw allows an attacker to force an invalid signature, causing an assertion failure or possible validation. The highest threat to this vulnerability is to confidentiality, integrity, as well as system availability.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-20305", + "https://bugzilla.redhat.com/show_bug.cgi?id=1942533", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20305", + "https://linux.oracle.com/cve/CVE-2021-20305.html", + "https://linux.oracle.com/errata/ELSA-2021-1206.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MQKWVVMAIDAJ7YAA3VVO32BHLDOH2E63/", + "https://lists.lysator.liu.se/pipermail/nettle-bugs/2021/009457.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20305", + "https://security.gentoo.org/glsa/202105-31", + "https://security.netapp.com/advisory/ntap-20211022-0002/", + "https://ubuntu.com/security/notices/USN-4906-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20305", + "https://www.debian.org/security/2021/dsa-4933" + ], + "PublishedDate": "2021-04-05T22:15:00Z", + "LastModifiedDate": "2021-12-06T13:57:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3580", + "VendorIDs": [ + "DSA-4933-1" + ], + "PkgID": "libnettle6@3.4.1-1", + "PkgName": "libnettle6", + "InstalledVersion": "3.4.1-1", + "FixedVersion": "3.4.1-1+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3580", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "nettle: Remote crash in RSA decryption via manipulated ciphertext", + "Description": "A flaw was found in the way nettle's RSA decryption functions handled specially crafted ciphertext. An attacker could use this flaw to provide a manipulated ciphertext leading to application crash and denial of service.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-3580", + "https://bugzilla.redhat.com/show_bug.cgi?id=1776250", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908110", + "https://bugzilla.redhat.com/show_bug.cgi?id=1908334", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922275", + "https://bugzilla.redhat.com/show_bug.cgi?id=1922276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1965445", + "https://bugzilla.redhat.com/show_bug.cgi?id=1967983", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20231", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20232", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3580", + "https://errata.almalinux.org/8/ALSA-2021-4451.html", + "https://errata.rockylinux.org/RLSA-2021:4451", + "https://linux.oracle.com/cve/CVE-2021-3580.html", + "https://linux.oracle.com/errata/ELSA-2022-9221.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00008.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3580", + "https://security.netapp.com/advisory/ntap-20211104-0006/", + "https://ubuntu.com/security/notices/USN-4990-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3580" + ], + "PublishedDate": "2021-08-05T21:15:00Z", + "LastModifiedDate": "2021-11-26T21:06:00Z" + }, + { + "VulnerabilityID": "CVE-2020-14155", + "PkgID": "libpcre3@2:8.39-12", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-12", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-14155", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: Integer overflow when parsing callout numeric arguments", + "Description": "libpcre in PCRE before 8.44 allows an integer overflow via a large number after a (?C substring.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://about.gitlab.com/releases/2020/07/01/security-release-13-1-2-release/", + "https://access.redhat.com/security/cve/CVE-2020-14155", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2020-14155.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2020-14155", + "https://security.netapp.com/advisory/ntap-20221028-0010/", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2020-14155", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.pcre.org/original/changelog.txt" + ], + "PublishedDate": "2020-06-15T17:15:00Z", + "LastModifiedDate": "2022-12-03T03:00:00Z" + }, + { + "VulnerabilityID": "CVE-2017-11164", + "PkgID": "libpcre3@2:8.39-12", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-12", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11164", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c", + "Description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 7.8, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://openwall.com/lists/oss-security/2017/07/11/3", + "http://www.openwall.com/lists/oss-security/2023/04/11/1", + "http://www.openwall.com/lists/oss-security/2023/04/12/1", + "http://www.securityfocus.com/bid/99575", + "https://access.redhat.com/security/cve/CVE-2017-11164", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + "https://www.cve.org/CVERecord?id=CVE-2017-11164" + ], + "PublishedDate": "2017-07-11T03:29:00Z", + "LastModifiedDate": "2023-04-12T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-16231", + "PkgID": "libpcre3@2:8.39-12", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-12", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-16231", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service", + "Description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + "http://seclists.org/fulldisclosure/2018/Dec/33", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101688", + "https://access.redhat.com/security/cve/CVE-2017-16231", + "https://bugs.exim.org/show_bug.cgi?id=2047", + "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + "https://www.cve.org/CVERecord?id=CVE-2017-16231" + ], + "PublishedDate": "2019-03-21T15:59:00Z", + "LastModifiedDate": "2019-04-02T13:55:00Z" + }, + { + "VulnerabilityID": "CVE-2017-7245", + "PkgID": "libpcre3@2:8.39-12", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-12", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7245", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7245", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7245" + ], + "PublishedDate": "2017-03-23T21:59:00Z", + "LastModifiedDate": "2018-08-17T10:29:00Z" + }, + { + "VulnerabilityID": "CVE-2017-7246", + "PkgID": "libpcre3@2:8.39-12", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-12", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7246", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7246", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7246" + ], + "PublishedDate": "2017-03-23T21:59:00Z", + "LastModifiedDate": "2018-08-17T10:29:00Z" + }, + { + "VulnerabilityID": "CVE-2019-20838", + "PkgID": "libpcre3@2:8.39-12", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-12", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20838", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: Buffer over-read in JIT when UTF is disabled and \\X or \\R has fixed quantifier greater than 1", + "Description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://access.redhat.com/security/cve/CVE-2019-20838", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2019-20838.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2019-20838", + "https://www.pcre.org/original/changelog.txt" + ], + "PublishedDate": "2020-06-15T17:15:00Z", + "LastModifiedDate": "2021-09-22T14:22:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9893", + "PkgID": "libseccomp2@2.3.3-4", + "PkgName": "libseccomp2", + "InstalledVersion": "2.3.3-4", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9893", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libseccomp: incorrect generation of syscall filters in libseccomp", + "Description": "libseccomp before 2.4.0 did not correctly generate 64-bit syscall argument comparisons using the arithmetic operators (LT, GT, LE, GE), which might able to lead to bypassing seccomp filters and potential privilege escalations.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 7.3 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00022.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00027.html", + "http://www.paul-moore.com/blog/d/2019/03/libseccomp_v240.html", + "https://access.redhat.com/errata/RHSA-2019:3624", + "https://access.redhat.com/security/cve/CVE-2019-9893", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-9893", + "https://github.com/seccomp/libseccomp/issues/139", + "https://linux.oracle.com/cve/CVE-2019-9893.html", + "https://linux.oracle.com/errata/ELSA-2019-3624.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9893", + "https://seclists.org/oss-sec/2019/q1/179", + "https://security.gentoo.org/glsa/201904-18", + "https://ubuntu.com/security/notices/USN-4001-1", + "https://ubuntu.com/security/notices/USN-4001-2", + "https://usn.ubuntu.com/4001-1/", + "https://usn.ubuntu.com/4001-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-9893", + "https://www.openwall.com/lists/oss-security/2019/03/15/1" + ], + "PublishedDate": "2019-03-21T16:01:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36084", + "PkgID": "libsepol1@2.8-1", + "PkgName": "libsepol1", + "InstalledVersion": "2.8-1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36084", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: use-after-free in __cil_verify_classperms()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36084", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + "https://linux.oracle.com/cve/CVE-2021-36084.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36084" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:16:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36085", + "PkgID": "libsepol1@2.8-1", + "PkgName": "libsepol1", + "InstalledVersion": "2.8-1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36085", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: use-after-free in __cil_verify_classperms()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36085", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + "https://linux.oracle.com/cve/CVE-2021-36085.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36085" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:26:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36086", + "PkgID": "libsepol1@2.8-1", + "PkgName": "libsepol1", + "InstalledVersion": "2.8-1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36086", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free in cil_reset_classpermission()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36086", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + "https://linux.oracle.com/cve/CVE-2021-36086.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36086" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36087", + "PkgID": "libsepol1@2.8-1", + "PkgName": "libsepol1", + "InstalledVersion": "2.8-1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36087", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: heap-based buffer overflow in ebitmap_match_any()", + "Description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36087", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + "https://linux.oracle.com/cve/CVE-2021-36087.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36087" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T14:05:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3711", + "VendorIDs": [ + "DSA-4963-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1d-0+deb10u7", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3711", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: SM2 Decryption Buffer Overflow", + "Description": "In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the \"out\" parameter can be NULL and, on exit, the \"outlen\" parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the \"out\" parameter. A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small. A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer by up to a maximum of 62 bytes altering the contents of other data held after the buffer, possibly changing application behaviour or causing the application to crash. The location of the buffer is application dependent but is typically heap allocated. Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-120" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/security/cve/CVE-2021-3711", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3711", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + "https://github.com/advisories/GHSA-5ww6-px42-wc85", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + "https://rustsec.org/advisories/RUSTSEC-2021-0097.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://security.netapp.com/advisory/ntap-20211022-0003/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3711", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02" + ], + "PublishedDate": "2021-08-24T15:15:00Z", + "LastModifiedDate": "2022-12-06T21:23:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1292", + "VendorIDs": [ + "DSA-5139-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1n-0+deb10u2", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1292", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "c_rehash script allows command injection", + "Description": "The c_rehash script does not properly sanitise shell metacharacters to prevent command injection. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.3 (Affected 3.0.0,3.0.1,3.0.2). Fixed in OpenSSL 1.1.1o (Affected 1.1.1-1.1.1n). Fixed in OpenSSL 1.0.2ze (Affected 1.0.2-1.0.2zd).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-78" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 10, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.7 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-1292", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-953464.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1ad73b4d27bd8c1b369a3cd453681d3a4f1bb9b2", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=548d3f280a6e737673f5b61fce24bb100108dfeb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e5fd1728ef4c7a5bf7c7a7163ca60370460a6e23", + "https://linux.oracle.com/cve/CVE-2022-1292.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VX4KWHPMKYJL6ZLW4M5IU7E5UV5ZWJQU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNU5M7BXMML26G3GPYKFGQYPQDRSNKDD/", + "https://mta.openssl.org/pipermail/openssl-announce/2022-May/000224.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1292", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0011", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220602-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://ubuntu.com/security/notices/USN-5402-1", + "https://ubuntu.com/security/notices/USN-5402-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1292", + "https://www.debian.org/security/2022/dsa-5139", + "https://www.openssl.org/news/secadv/20220503.txt", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-05-03T16:15:00Z", + "LastModifiedDate": "2023-02-14T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2068", + "VendorIDs": [ + "DSA-5169-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1n-0+deb10u3", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2068", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "the c_rehash script allows command injection", + "Description": "In addition to the c_rehash shell command injection identified in CVE-2022-1292, further circumstances where the c_rehash script does not properly sanitise shell metacharacters to prevent command injection were found by code review. When the CVE-2022-1292 was fixed it was not discovered that there are other places in the script where the file names of certificates being hashed were possibly passed to a command executed through the shell. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.4 (Affected 3.0.0,3.0.1,3.0.2,3.0.3). Fixed in OpenSSL 1.1.1p (Affected 1.1.1-1.1.1o). Fixed in OpenSSL 1.0.2zf (Affected 1.0.2-1.0.2ze).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-78" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 10, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.7 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2068", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c9c35870601b4a44d86ddbf512b38df38285cfa", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7a9c027159fe9e1bbc2cd38a8a2914bff0d5abd9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9639817dac8bbbaa64d09efad7464ccc405527c7", + "https://linux.oracle.com/cve/CVE-2022-2068.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6WZZBKUHQFGSKGNXXKICSRPL7AMVW5M5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2068", + "https://security.netapp.com/advisory/ntap-20220707-0008/", + "https://ubuntu.com/security/notices/USN-5488-1", + "https://ubuntu.com/security/notices/USN-5488-2", + "https://www.cve.org/CVERecord?id=CVE-2022-2068", + "https://www.debian.org/security/2022/dsa-5169", + "https://www.openssl.org/news/secadv/20220621.txt" + ], + "PublishedDate": "2022-06-21T15:15:00Z", + "LastModifiedDate": "2023-03-01T16:23:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3712", + "VendorIDs": [ + "DSA-4963-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1d-0+deb10u7", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3712", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: Read buffer overruns processing ASN.1 strings", + "Description": "ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own \"d2i\" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the \"data\" and \"length\" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though this is not guaranteed for strings that have been directly constructed. Where an application requests an ASN.1 structure to be printed, and where that ASN.1 structure contains ASN1_STRINGs that have been directly constructed by the application without NUL terminating the \"data\" field, then a read buffer overrun can occur. The same thing can also occur during name constraints processing of certificates (for example if a certificate has been directly constructed by the application instead of loading it via the OpenSSL parsing functions, and the certificate contains non NUL terminated ASN1_STRING structures). It can also occur in the X509_get1_email(), X509_REQ_get1_email() and X509_get1_ocsp() functions. If a malicious actor can cause an application to directly construct an ASN1_STRING and then process it through one of the affected OpenSSL functions then this issue could be hit. This might result in a crash (causing a Denial of Service attack). It could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext). Fixed in OpenSSL 1.1.1l (Affected 1.1.1-1.1.1k). Fixed in OpenSSL 1.0.2za (Affected 1.0.2-1.0.2y).", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 5.8, + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/26/2", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3712.json", + "https://access.redhat.com/security/cve/CVE-2021-3712", + "https://cert-portal.siemens.com/productcert/pdf/ssa-244969.pdf", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3712", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=94d23fcff9b2a7a8368dfe52214d5c2569882c11", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + "https://github.com/advisories/GHSA-q9wj-f4qw-6vfj", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10366", + "https://linux.oracle.com/cve/CVE-2021-3712.html", + "https://linux.oracle.com/errata/ELSA-2022-9023.html", + "https://lists.apache.org/thread.html/r18995de860f0e63635f3008fd2a6aca82394249476d21691e7c59c9e@%3Cdev.tomcat.apache.org%3E", + "https://lists.apache.org/thread.html/rad5d9f83f0d11fb3f8bb148d179b8a9ad7c6a17f18d70e5805a713d1@%3Cdev.tomcat.apache.org%3E", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00014.html", + "https://lists.debian.org/debian-lts-announce/2021/09/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", + "https://rustsec.org/advisories/RUSTSEC-2021-0098.html", + "https://security.gentoo.org/glsa/202209-02", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20210827-0010/", + "https://ubuntu.com/security/notices/USN-5051-1", + "https://ubuntu.com/security/notices/USN-5051-2", + "https://ubuntu.com/security/notices/USN-5051-3", + "https://ubuntu.com/security/notices/USN-5051-4 (regression only in trusty/esm)", + "https://ubuntu.com/security/notices/USN-5088-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3712", + "https://www.debian.org/security/2021/dsa-4963", + "https://www.openssl.org/news/secadv/20210824.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html", + "https://www.tenable.com/security/tns-2021-16", + "https://www.tenable.com/security/tns-2022-02" + ], + "PublishedDate": "2021-08-24T15:15:00Z", + "LastModifiedDate": "2022-12-06T21:23:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0778", + "VendorIDs": [ + "DSA-5103-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1d-0+deb10u8", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0778", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: Infinite loop in BN_mod_sqrt() reachable when parsing certificates", + "Description": "The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022. Fixed in OpenSSL 3.0.2 (Affected 3.0.0,3.0.1). Fixed in OpenSSL 1.1.1n (Affected 1.1.1-1.1.1m). Fixed in OpenSSL 1.0.2zd (Affected 1.0.2-1.0.2zc).", + "Severity": "HIGH", + "CweIDs": [ + "CWE-835" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/167344/OpenSSL-1.0.2-1.1.1-3.0-BN_mod_sqrt-Infinite-Loop.html", + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "https://access.redhat.com/errata/RHSA-2022:5326", + "https://access.redhat.com/security/cve/CVE-2022-0778", + "https://bugzilla.redhat.com/2062202", + "https://bugzilla.redhat.com/show_bug.cgi?id=2062202", + "https://cert-portal.siemens.com/productcert/pdf/ssa-712929.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0778", + "https://errata.almalinux.org/8/ALSA-2022-5326.html", + "https://errata.rockylinux.org/RLSA-2022:4899", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3118eb64934499d93db3230748a452351d1d9a65", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=380085481c64de749a6dd25cdf0bcf4360b30f83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a466912611aa6cbdf550cd10601390e587451246", + "https://github.com/advisories/GHSA-x3mh-jvjw-3xwx", + "https://linux.oracle.com/cve/CVE-2022-0778.html", + "https://linux.oracle.com/errata/ELSA-2022-9272.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00023.html", + "https://lists.debian.org/debian-lts-announce/2022/03/msg00024.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/323SNN6ZX7PRJJWP2BUAFLPUAE42XWLZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GDB3GQVJPXJE7X5C5JN6JAA4XUDWD6E6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W6K3PR542DXWLEFFMFIDMME4CWMHJRMG/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0002", + "https://rustsec.org/advisories/RUSTSEC-2022-0014.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220321-0002/", + "https://security.netapp.com/advisory/ntap-20220429-0005/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5328-1", + "https://ubuntu.com/security/notices/USN-5328-2", + "https://www.cve.org/CVERecord?id=CVE-2022-0778", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220315.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.tenable.com/security/tns-2022-06", + "https://www.tenable.com/security/tns-2022-07", + "https://www.tenable.com/security/tns-2022-08", + "https://www.tenable.com/security/tns-2022-09" + ], + "PublishedDate": "2022-03-15T17:15:00Z", + "LastModifiedDate": "2022-11-09T20:43:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4450", + "VendorIDs": [ + "DLA-3325-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1n-0+deb10u4", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4450", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "double free after calling PEM_read_bio_ex", + "Description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0215", + "VendorIDs": [ + "DLA-3325-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1n-0+deb10u4", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0215", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free following BIO_new_NDEF", + "Description": "The public API function BIO_new_NDEF is a helper function used for streaming\nASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\nSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\nend user applications.\n\nThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\nBIO onto the front of it to form a BIO chain, and then returns the new head of\nthe BIO chain to the caller. Under certain conditions, for example if a CMS\nrecipient public key is invalid, the new filter BIO is freed and the function\nreturns a NULL result indicating a failure. However, in this case, the BIO chain\nis not properly cleaned up and the BIO passed by the caller still retains\ninternal pointers to the previously freed filter BIO. If the caller then goes on\nto call BIO_pop() on the BIO then a use-after-free will occur. This will most\nlikely result in a crash.\n\n\n\nThis scenario occurs directly in the internal function B64_write_ASN1() which\nmay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\nthe BIO. This internal function is in turn called by the public API functions\nPEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\nSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\n\nOther public API functions that may be impacted by this include\ni2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\ni2d_PKCS7_bio_stream.\n\nThe OpenSSL cms and smime command line applications are similarly affected.\n\n\n\n", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0286", + "VendorIDs": [ + "DLA-3325-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1n-0+deb10u4", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0286", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "X.400 address type confusion in X.509 GeneralName", + "Description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-843" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-03-27T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0464", + "VendorIDs": [ + "DLA-3449-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1n-0+deb10u5", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0464", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "Description": "A security vulnerability has been identified in all supported versions\n\nof OpenSSL related to the verification of X.509 certificate chains\nthat include policy constraints. Attackers may be able to exploit this\nvulnerability by creating a malicious certificate chain that triggers\nexponential use of computational resources, leading to a denial-of-service\n(DoS) attack on affected systems.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://linux.oracle.com/cve/CVE-2023-0464.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt" + ], + "PublishedDate": "2023-03-22T17:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2650", + "VendorIDs": [ + "DLA-3449-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1n-0+deb10u5", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://linux.oracle.com/cve/CVE-2023-2650.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://ubuntu.com/security/notices/USN-6188-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-4160", + "VendorIDs": [ + "DSA-5103-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1d-0+deb10u8", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-4160", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: Carry propagation bug in the MIPS32 and MIPS64 squaring procedure", + "Description": "There is a carry propagation bug in the MIPS32 and MIPS64 squaring procedure. Many EC algorithms are affected, including some of the TLS 1.3 default curves. Impact was not analyzed in detail, because the pre-requisites for attack are considered unlikely and include reusing private keys. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be significant. However, for an attack on TLS to be meaningful, the server would have to share the DH private key among multiple clients, which is no longer an option since CVE-2016-0701. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0.0. It was addressed in the releases of 1.1.1m and 3.0.1 on the 15th of December 2021. For the 1.0.2 release it is addressed in git commit 6fc1aaaf3 that is available to premium support customers only. It will be made available in 1.0.2zc when it is released. The issue only affects OpenSSL on MIPS platforms. Fixed in OpenSSL 3.0.1 (Affected 3.0.0). Fixed in OpenSSL 1.1.1m (Affected 1.1.1-1.1.1l). Fixed in OpenSSL 1.0.2zc-dev (Affected 1.0.2-1.0.2zb).", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 4.3, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-4160", + "https://cert-portal.siemens.com/productcert/pdf/ssa-637483.pdf", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=3bf7b73ea7123045b8f972badc67ed6878e6c37f", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=6fc1aaaf303185aa5e483e06bdfae16daa9193a7", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e9e726506cd2a3fd9c0f12daf8cc1fe934c7dddb", + "https://nvd.nist.gov/vuln/detail/CVE-2021-4160", + "https://security.gentoo.org/glsa/202210-02", + "https://www.cve.org/CVERecord?id=CVE-2021-4160", + "https://www.debian.org/security/2022/dsa-5103", + "https://www.openssl.org/news/secadv/20220128.txt", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-01-28T22:15:00Z", + "LastModifiedDate": "2022-11-09T20:46:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2097", + "VendorIDs": [ + "DLA-3325-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1n-0+deb10u4", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2097", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "AES OCB fails to encrypt some bytes", + "Description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of \"in place\" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt" + ], + "PublishedDate": "2022-07-05T11:15:00Z", + "LastModifiedDate": "2023-04-20T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4304", + "VendorIDs": [ + "DLA-3325-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1n-0+deb10u4", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4304", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing attack in RSA Decryption implementation", + "Description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "Severity": "MEDIUM", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T17:13:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0465", + "VendorIDs": [ + "DLA-3449-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1n-0+deb10u5", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0465", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Invalid certificate policies in leaf certificates are silently ignored", + "Description": "Applications that use a non-default option when verifying certificates may be\nvulnerable to an attack from a malicious CA to circumvent certain checks.\n\nInvalid certificate policies in leaf certificates are silently ignored by\nOpenSSL and other certificate policy checks are skipped for that certificate.\nA malicious CA could use this to deliberately assert invalid certificate policies\nin order to circumvent policy checking on the certificate altogether.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://linux.oracle.com/cve/CVE-2023-0465.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0466", + "VendorIDs": [ + "DLA-3449-1" + ], + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "FixedVersion": "1.1.1n-0+deb10u5", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0466", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Certificate policy check not enabled", + "Description": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://linux.oracle.com/cve/CVE-2023-0466.html", + "https://linux.oracle.com/errata/ELSA-2023-3722.html", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2007-6755", + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dual_EC_DRBG: weak pseudo random number generator", + "Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + } + }, + "References": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html" + ], + "PublishedDate": "2013-10-11T22:55:00Z", + "LastModifiedDate": "2022-11-01T14:44:00Z" + }, + { + "VulnerabilityID": "CVE-2010-0928", + "PkgID": "libssl1.1@1.1.1d-0+deb10u6", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1d-0+deb10u6", + "Layer": { + "Digest": "sha256:12a37f49e93903c610be262cd4bdc3c92b1258a1aa980717d7886e0b12fdf1b1", + "DiffID": "sha256:1e16c975f0a91d7b80a89b984390ece968f597ac418c772df5f24afab0b1a806" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: RSA authentication weakness", + "Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-310" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:N/A:N", + "V2Score": 4 + } + }, + "References": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928" + ], + "PublishedDate": "2010-03-05T19:30:00Z", + "LastModifiedDate": "2017-08-17T01:32:00Z" + }, + { + "VulnerabilityID": "CVE-2018-12886", + "PkgID": "libstdc++6@8.3.0-6", + "PkgName": "libstdc++6", + "InstalledVersion": "8.3.0-6", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-12886", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gcc: spilling of stack protection address in cfgexpand.c and function.c leads to stack-overflow protection bypass", + "Description": "stack_protect_prologue in cfgexpand.c and stack_protect_epilogue in function.c in GNU Compiler Collection (GCC) 4.1 through 8 (under certain circumstances) generate instruction sequences when targeting ARM targets that spill the address of the stack protector guard, which allows an attacker to bypass the protection of -fstack-protector, -fstack-protector-all, -fstack-protector-strong, and -fstack-protector-explicit against stack overflow by controlling what the stack canary is compared against.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.1 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H", + "V3Score": 6.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-12886", + "https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/config/arm/arm-protos.h?revision=266379\u0026view=markup", + "https://nvd.nist.gov/vuln/detail/CVE-2018-12886", + "https://www.cve.org/CVERecord?id=CVE-2018-12886", + "https://www.gnu.org/software/gcc/gcc-8/changes.html" + ], + "PublishedDate": "2019-05-22T19:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2019-15847", + "PkgID": "libstdc++6@8.3.0-6", + "PkgName": "libstdc++6", + "InstalledVersion": "8.3.0-6", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-15847", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "gcc: POWER9 \"DARN\" RNG intrinsic produces repeated output", + "Description": "The POWER9 backend in GNU Compiler Collection (GCC) before version 10 could optimize multiple calls of the __builtin_darn intrinsic into a single call, thus reducing the entropy of the random number generator. This occurred because a volatile operation was not specified. For example, within a single execution of a program, the output of every __builtin_darn() call may be the same.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-331" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00056.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-10/msg00057.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-05/msg00058.html", + "https://access.redhat.com/security/cve/CVE-2019-15847", + "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91481", + "https://linux.oracle.com/cve/CVE-2019-15847.html", + "https://linux.oracle.com/errata/ELSA-2020-1864.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-15847", + "https://www.cve.org/CVERecord?id=CVE-2019-15847" + ], + "PublishedDate": "2019-09-02T23:15:00Z", + "LastModifiedDate": "2020-09-17T13:38:00Z" + }, + { + "VulnerabilityID": "CVE-2019-3843", + "PkgID": "libsystemd0@241-7~deb10u7", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3843", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: services with DynamicUser can create SUID/SGID binaries", + "Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 4.6, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 4.5 + } + }, + "References": [ + "http://www.securityfocus.com/bid/108116", + "https://access.redhat.com/security/cve/CVE-2019-3843", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3843", + "https://github.com/systemd/systemd-stable/pull/54 (backport for v241-stable)", + "https://linux.oracle.com/cve/CVE-2019-3843.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3843" + ], + "PublishedDate": "2019-04-26T21:29:00Z", + "LastModifiedDate": "2022-01-31T18:53:00Z" + }, + { + "VulnerabilityID": "CVE-2019-3844", + "PkgID": "libsystemd0@241-7~deb10u7", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3844", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries", + "Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-268" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 4.6, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 4.5 + } + }, + "References": [ + "http://www.securityfocus.com/bid/108096", + "https://access.redhat.com/security/cve/CVE-2019-3844", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3844", + "https://linux.oracle.com/cve/CVE-2019-3844.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3844" + ], + "PublishedDate": "2019-04-26T21:29:00Z", + "LastModifiedDate": "2022-01-31T18:52:00Z" + }, + { + "VulnerabilityID": "CVE-2023-26604", + "VendorIDs": [ + "DLA-3377-1" + ], + "PkgID": "libsystemd0@241-7~deb10u7", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u7", + "FixedVersion": "241-7~deb10u9", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-26604", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "privilege escalation via the less pager", + "Description": "systemd before 247 does not adequately block local privilege escalation for some Sudo configurations, e.g., plausible sudoers files in which the \"systemctl status\" command may be executed. Specifically, systemd does not set LESSSECURE to 1, and thus other programs may be launched from the less program. This presents a substantial security risk when running systemctl from Sudo, because less executes as root when the terminal size is too small to show the complete systemctl output.", + "Severity": "HIGH", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-26604", + "https://blog.compass-security.com/2012/10/dangerous-sudoers-entries-part-2-insecure-functionality/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26604", + "https://github.com/systemd/systemd/blob/main/NEWS#L4335-L4340", + "https://github.com/systemd/systemd/issues/5666", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00032.html", + "https://medium.com/@zenmoviefornotification/saidov-maxim-cve-2023-26604-c1232a526ba7", + "https://nvd.nist.gov/vuln/detail/CVE-2023-26604", + "https://security.netapp.com/advisory/ntap-20230505-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-26604" + ], + "PublishedDate": "2023-03-03T16:15:00Z", + "LastModifiedDate": "2023-05-05T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33910", + "VendorIDs": [ + "DSA-4942-1" + ], + "PkgID": "libsystemd0@241-7~deb10u7", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u7", + "FixedVersion": "241-7~deb10u8", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33910", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: uncontrolled allocation on the stack in function unit_name_path_escape leads to crash", + "Description": "basic/unit-name.c in systemd prior to 246.15, 247.8, 248.5, and 249.1 has a Memory Allocation with an Excessive Size Value (involving strdupa and alloca for a pathname controlled by a local attacker) that results in an operating system crash.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33910.json", + "https://access.redhat.com/security/cve/CVE-2021-33910", + "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33910", + "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + "https://linux.oracle.com/cve/CVE-2021-33910.html", + "https://linux.oracle.com/errata/ELSA-2021-2717.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20211104-0008/", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33910", + "https://www.debian.org/security/2021/dsa-4942", + "https://www.openwall.com/lists/oss-security/2021/07/20/2", + "https://www.qualys.com/2021/07/20/cve-2021-33910/denial-of-service-systemd.txt" + ], + "PublishedDate": "2021-07-20T19:15:00Z", + "LastModifiedDate": "2022-06-14T11:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3997", + "PkgID": "libsystemd0@241-7~deb10u7", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3997", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: Uncontrolled recursion in systemd-tmpfiles when removing files", + "Description": "A flaw was found in systemd. An uncontrolled recursion in systemd-tmpfiles may lead to a denial of service at boot time when too many nested directories are created in /tmp.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-3997", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3997", + "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5226-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3997", + "https://www.openwall.com/lists/oss-security/2022/01/10/2" + ], + "PublishedDate": "2022-08-23T20:15:00Z", + "LastModifiedDate": "2023-05-03T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3821", + "PkgID": "libsystemd0@241-7~deb10u7", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in format_timespan() function", + "Description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821" + ], + "PublishedDate": "2022-11-08T22:15:00Z", + "LastModifiedDate": "2023-05-03T12:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4415", + "PkgID": "libsystemd0@241-7~deb10u7", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "Description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3" + ], + "PublishedDate": "2023-01-11T15:15:00Z", + "LastModifiedDate": "2023-02-02T16:19:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4392", + "PkgID": "libsystemd0@241-7~deb10u7", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + } + }, + "References": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392" + ], + "PublishedDate": "2013-10-28T22:55:00Z", + "LastModifiedDate": "2022-01-31T17:49:00Z" + }, + { + "VulnerabilityID": "CVE-2019-20386", + "PkgID": "libsystemd0@241-7~deb10u7", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20386", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: memory leak in button_open() in login/logind-button.c when udev events are received", + "Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.", + "Severity": "LOW", + "CweIDs": [ + "CWE-401" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 2.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 2.4 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + "https://access.redhat.com/security/cve/CVE-2019-20386", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20386", + "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + "https://linux.oracle.com/cve/CVE-2019-20386.html", + "https://linux.oracle.com/errata/ELSA-2020-4553.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + "https://security.netapp.com/advisory/ntap-20200210-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-20386" + ], + "PublishedDate": "2020-01-21T06:15:00Z", + "LastModifiedDate": "2022-01-28T21:27:00Z" + }, + { + "VulnerabilityID": "CVE-2020-13529", + "PkgID": "libsystemd0@241-7~deb10u7", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "Description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "Severity": "LOW", + "CweIDs": [ + "CWE-290" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V2Score": 2.9, + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529" + ], + "PublishedDate": "2021-05-10T16:15:00Z", + "LastModifiedDate": "2022-10-07T02:59:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31437", + "PkgID": "libsystemd0@241-7~deb10u7", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31437", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can modify a seale ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify a sealed log file such that, in some views, not all existing and sealed log messages are displayed. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:16:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31438", + "PkgID": "libsystemd0@241-7~deb10u7", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31438", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can truncate a sea ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can truncate a sealed log file and then resume log sealing such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:16:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31439", + "PkgID": "libsystemd0@241-7~deb10u7", + "PkgName": "libsystemd0", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31439", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can modify the con ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify the contents of past events in a sealed log file and then adjust the file such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-46848", + "VendorIDs": [ + "DLA-3263-1" + ], + "PkgID": "libtasn1-6@4.13-3", + "PkgName": "libtasn1-6", + "InstalledVersion": "4.13-3", + "FixedVersion": "4.13-3+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-46848", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libtasn1: Out-of-bound access in ETYPE_OK", + "Description": "GNU Libtasn1 before 4.19.0 has an ETYPE_OK off-by-one array size check that affects asn1_encode_simple_der.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0343", + "https://access.redhat.com/security/cve/CVE-2021-46848", + "https://bugs.gentoo.org/866237", + "https://bugzilla.redhat.com/2140058", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + "https://errata.almalinux.org/9/ALSA-2023-0343.html", + "https://errata.rockylinux.org/RLSA-2023:0343", + "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + "https://gitlab.com/gnutls/libtasn1/-/issues/32", + "https://linux.oracle.com/cve/CVE-2021-46848.html", + "https://linux.oracle.com/errata/ELSA-2023-0343.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + "https://security.netapp.com/advisory/ntap-20221118-0006/", + "https://ubuntu.com/security/notices/USN-5707-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46848" + ], + "PublishedDate": "2022-10-24T14:15:00Z", + "LastModifiedDate": "2023-01-20T13:55:00Z" + }, + { + "VulnerabilityID": "CVE-2018-1000654", + "PkgID": "libtasn1-6@4.13-3", + "PkgName": "libtasn1-6", + "InstalledVersion": "4.13-3", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-1000654", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libtasn1: Infinite loop in _asn1_expand_object_id(ptree) leads to memory exhaustion", + "Description": "GNU Libtasn1-4.13 libtasn1-4.13 version libtasn1-4.13, libtasn1-4.12 contains a DoS, specifically CPU usage will reach 100% when running asn1Paser against the POC due to an issue in _asn1_expand_object_id(p_tree), after a long time, the program will be killed. This attack appears to be exploitable via parsing a crafted file.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 7.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 4 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00018.html", + "http://www.securityfocus.com/bid/105151", + "https://access.redhat.com/security/cve/CVE-2018-1000654", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1000654", + "https://gitlab.com/gnutls/libtasn1/issues/4", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-1000654", + "https://ubuntu.com/security/notices/USN-5352-1", + "https://www.cve.org/CVERecord?id=CVE-2018-1000654" + ], + "PublishedDate": "2018-08-20T19:31:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-3843", + "PkgID": "libudev1@241-7~deb10u7", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3843", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: services with DynamicUser can create SUID/SGID binaries", + "Description": "It was discovered that a systemd service that uses DynamicUser property can create a SUID/SGID binary that would be allowed to run as the transient service UID/GID even after the service is terminated. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the UID/GID will be recycled.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 4.6, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 4.5 + } + }, + "References": [ + "http://www.securityfocus.com/bid/108116", + "https://access.redhat.com/security/cve/CVE-2019-3843", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3843", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3843", + "https://github.com/systemd/systemd-stable/pull/54 (backport for v241-stable)", + "https://linux.oracle.com/cve/CVE-2019-3843.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5JXQAKSTMABZ46EVCRMW62DHWYHTTFES/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3843", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3843" + ], + "PublishedDate": "2019-04-26T21:29:00Z", + "LastModifiedDate": "2022-01-31T18:53:00Z" + }, + { + "VulnerabilityID": "CVE-2019-3844", + "PkgID": "libudev1@241-7~deb10u7", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-3844", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: services with DynamicUser can get new privileges and create SGID binaries", + "Description": "It was discovered that a systemd service that uses DynamicUser property can get new privileges through the execution of SUID binaries, which would allow to create binaries owned by the service transient group with the setgid bit set. A local attacker may use this flaw to access resources that will be owned by a potentially different service in the future, when the GID will be recycled.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-268" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 4.6, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 4.5 + } + }, + "References": [ + "http://www.securityfocus.com/bid/108096", + "https://access.redhat.com/security/cve/CVE-2019-3844", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-3844", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-3844", + "https://linux.oracle.com/cve/CVE-2019-3844.html", + "https://linux.oracle.com/errata/ELSA-2020-1794.html", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-3844", + "https://security.netapp.com/advisory/ntap-20190619-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-3844" + ], + "PublishedDate": "2019-04-26T21:29:00Z", + "LastModifiedDate": "2022-01-31T18:52:00Z" + }, + { + "VulnerabilityID": "CVE-2023-26604", + "VendorIDs": [ + "DLA-3377-1" + ], + "PkgID": "libudev1@241-7~deb10u7", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u7", + "FixedVersion": "241-7~deb10u9", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-26604", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "privilege escalation via the less pager", + "Description": "systemd before 247 does not adequately block local privilege escalation for some Sudo configurations, e.g., plausible sudoers files in which the \"systemctl status\" command may be executed. Specifically, systemd does not set LESSSECURE to 1, and thus other programs may be launched from the less program. This presents a substantial security risk when running systemctl from Sudo, because less executes as root when the terminal size is too small to show the complete systemctl output.", + "Severity": "HIGH", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-26604", + "https://blog.compass-security.com/2012/10/dangerous-sudoers-entries-part-2-insecure-functionality/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-26604", + "https://github.com/systemd/systemd/blob/main/NEWS#L4335-L4340", + "https://github.com/systemd/systemd/issues/5666", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00032.html", + "https://medium.com/@zenmoviefornotification/saidov-maxim-cve-2023-26604-c1232a526ba7", + "https://nvd.nist.gov/vuln/detail/CVE-2023-26604", + "https://security.netapp.com/advisory/ntap-20230505-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-26604" + ], + "PublishedDate": "2023-03-03T16:15:00Z", + "LastModifiedDate": "2023-05-05T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33910", + "VendorIDs": [ + "DSA-4942-1" + ], + "PkgID": "libudev1@241-7~deb10u7", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u7", + "FixedVersion": "241-7~deb10u8", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33910", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: uncontrolled allocation on the stack in function unit_name_path_escape leads to crash", + "Description": "basic/unit-name.c in systemd prior to 246.15, 247.8, 248.5, and 249.1 has a Memory Allocation with an Excessive Size Value (involving strdupa and alloca for a pathname controlled by a local attacker) that results in an operating system crash.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/163621/Sequoia-A-Deep-Root-In-Linuxs-Filesystem-Layer.html", + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33910.json", + "https://access.redhat.com/security/cve/CVE-2021-33910", + "https://cert-portal.siemens.com/productcert/pdf/ssa-222547.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33910", + "https://github.com/systemd/systemd-stable/commit/4a1c5f34bd3e1daed4490e9d97918e504d19733b", + "https://github.com/systemd/systemd-stable/commit/764b74113e36ac5219a4b82a05f311b5a92136ce", + "https://github.com/systemd/systemd-stable/commit/b00674347337b7531c92fdb65590ab253bb57538", + "https://github.com/systemd/systemd-stable/commit/cfd14c65374027b34dbbc4f0551456c5dc2d1f61", + "https://github.com/systemd/systemd/commit/b34a4f0e6729de292cb3b0c03c1d48f246ad896b", + "https://github.com/systemd/systemd/pull/20256/commits/441e0115646d54f080e5c3bb0ba477c892861ab9", + "https://linux.oracle.com/cve/CVE-2021-33910.html", + "https://linux.oracle.com/errata/ELSA-2021-2717.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2LSDMHAKI4LGFOCSPXNVVSEWQFAVFWR7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33910", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20211104-0008/", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33910", + "https://www.debian.org/security/2021/dsa-4942", + "https://www.openwall.com/lists/oss-security/2021/07/20/2", + "https://www.qualys.com/2021/07/20/cve-2021-33910/denial-of-service-systemd.txt" + ], + "PublishedDate": "2021-07-20T19:15:00Z", + "LastModifiedDate": "2022-06-14T11:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3997", + "PkgID": "libudev1@241-7~deb10u7", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3997", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: Uncontrolled recursion in systemd-tmpfiles when removing files", + "Description": "A flaw was found in systemd. An uncontrolled recursion in systemd-tmpfiles may lead to a denial of service at boot time when too many nested directories are created in /tmp.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-3997", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3997", + "https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3997", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5226-1", + "https://www.cve.org/CVERecord?id=CVE-2021-3997", + "https://www.openwall.com/lists/oss-security/2022/01/10/2" + ], + "PublishedDate": "2022-08-23T20:15:00Z", + "LastModifiedDate": "2023-05-03T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3821", + "PkgID": "libudev1@241-7~deb10u7", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in format_timespan() function", + "Description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821" + ], + "PublishedDate": "2022-11-08T22:15:00Z", + "LastModifiedDate": "2023-05-03T12:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4415", + "PkgID": "libudev1@241-7~deb10u7", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "Description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3" + ], + "PublishedDate": "2023-01-11T15:15:00Z", + "LastModifiedDate": "2023-02-02T16:19:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4392", + "PkgID": "libudev1@241-7~deb10u7", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + } + }, + "References": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392" + ], + "PublishedDate": "2013-10-28T22:55:00Z", + "LastModifiedDate": "2022-01-31T17:49:00Z" + }, + { + "VulnerabilityID": "CVE-2019-20386", + "PkgID": "libudev1@241-7~deb10u7", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20386", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: memory leak in button_open() in login/logind-button.c when udev events are received", + "Description": "An issue was discovered in button_open in login/logind-button.c in systemd before 243. When executing the udevadm trigger command, a memory leak may occur.", + "Severity": "LOW", + "CweIDs": [ + "CWE-401" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 2.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 2.4 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-02/msg00014.html", + "https://access.redhat.com/security/cve/CVE-2019-20386", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20386", + "https://github.com/systemd/systemd/commit/b2774a3ae692113e1f47a336a6c09bac9cfb49ad", + "https://linux.oracle.com/cve/CVE-2019-20386.html", + "https://linux.oracle.com/errata/ELSA-2020-4553.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HZPCOMW5X6IZZXASCDD2CNW2DLF3YADC/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20386", + "https://security.netapp.com/advisory/ntap-20200210-0002/", + "https://ubuntu.com/security/notices/USN-4269-1", + "https://usn.ubuntu.com/4269-1/", + "https://www.cve.org/CVERecord?id=CVE-2019-20386" + ], + "PublishedDate": "2020-01-21T06:15:00Z", + "LastModifiedDate": "2022-01-28T21:27:00Z" + }, + { + "VulnerabilityID": "CVE-2020-13529", + "PkgID": "libudev1@241-7~deb10u7", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "Description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "Severity": "LOW", + "CweIDs": [ + "CWE-290" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V2Score": 2.9, + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529" + ], + "PublishedDate": "2021-05-10T16:15:00Z", + "LastModifiedDate": "2022-10-07T02:59:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31437", + "PkgID": "libudev1@241-7~deb10u7", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31437", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can modify a seale ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify a sealed log file such that, in some views, not all existing and sealed log messages are displayed. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:16:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31438", + "PkgID": "libudev1@241-7~deb10u7", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31438", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can truncate a sea ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can truncate a sealed log file and then resume log sealing such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:16:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31439", + "PkgID": "libudev1@241-7~deb10u7", + "PkgName": "libudev1", + "InstalledVersion": "241-7~deb10u7", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31439", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "An issue was discovered in systemd 253. An attacker can modify the con ...", + "Description": "** DISPUTED ** An issue was discovered in systemd 253. An attacker can modify the contents of past events in a sealed log file and then adjust the file such that checking the integrity shows no error, despite modifications. NOTE: the vendor reportedly sent \"a reply denying that any of the finding was a security vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-354" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/kastel-security/Journald", + "https://github.com/kastel-security/Journald/blob/main/journald-publication.pdf", + "https://github.com/systemd/systemd/releases" + ], + "PublishedDate": "2023-06-13T17:15:00Z", + "LastModifiedDate": "2023-06-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "libxtables12@1.8.5-3~bpo10+1", + "PkgName": "libxtables12", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:76e904deb6ef7af062ebd0819238b36a65ce5289960e2539e40b30416bd16f9f", + "DiffID": "sha256:3cf1454ee1bfffc50cc60cfd7c733db1e9837df1ae9cb58e93f62cc3a2516c57" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2019-11360", + "PkgID": "libxtables12@1.8.5-3~bpo10+1", + "PkgName": "libxtables12", + "InstalledVersion": "1.8.5-3~bpo10+1", + "Layer": { + "Digest": "sha256:76e904deb6ef7af062ebd0819238b36a65ce5289960e2539e40b30416bd16f9f", + "DiffID": "sha256:3cf1454ee1bfffc50cc60cfd7c733db1e9837df1ae9cb58e93f62cc3a2516c57" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11360", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: buffer overflow in iptables-restore", + "Description": "A buffer overflow in iptables-restore in netfilter iptables 1.8.2 allows an attacker to (at least) crash the program or potentially gain code execution via a specially crafted iptables-save file. This is related to add_param_to_argv in xshared.c.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:S/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 3.5, + "V3Score": 4.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.2 + } + }, + "References": [ + "https://0day.work/cve-2019-11360-bufferoverflow-in-iptables-restore-v1-8-2/", + "https://access.redhat.com/security/cve/CVE-2019-11360", + "https://git.netfilter.org/iptables/commit/iptables/xshared.c?id=2ae1099a42e6a0f06de305ca13a842ac83d4683e", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11360", + "https://www.cve.org/CVERecord?id=CVE-2019-11360" + ], + "PublishedDate": "2019-07-12T14:15:00Z", + "LastModifiedDate": "2021-07-21T11:39:00Z" + }, + { + "VulnerabilityID": "CVE-2007-5686", + "PkgID": "login@1:4.5-1.1", + "PkgName": "login", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-264" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N", + "V2Score": 4.9 + } + }, + "References": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "PublishedDate": "2007-10-28T17:08:00Z", + "LastModifiedDate": "2018-10-15T21:45:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4235", + "PkgID": "login@1:4.5-1.1", + "PkgName": "login", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "Severity": "LOW", + "CweIDs": [ + "CWE-367" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 3.3, + "V3Score": 4.7 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 3.7, + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235" + ], + "PublishedDate": "2019-12-03T15:15:00Z", + "LastModifiedDate": "2023-02-13T00:28:00Z" + }, + { + "VulnerabilityID": "CVE-2018-7169", + "PkgID": "login@1:4.5-1.1", + "PkgName": "login", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7169", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation", + "Description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-7169", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7169", + "https://github.com/shadow-maint/shadow/pull/97", + "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + "https://security.gentoo.org/glsa/201805-09", + "https://ubuntu.com/security/notices/USN-5254-1", + "https://www.cve.org/CVERecord?id=CVE-2018-7169" + ], + "PublishedDate": "2018-02-15T20:29:00Z", + "LastModifiedDate": "2019-10-03T00:03:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19882", + "PkgID": "login@1:4.5-1.1", + "PkgName": "login", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.9, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882" + ], + "PublishedDate": "2019-12-18T16:15:00Z", + "LastModifiedDate": "2020-08-25T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29383", + "PkgID": "login@1:4.5-1.1", + "PkgName": "login", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Improper input validation in shadow-utils package utility chfn", + "Description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that \"cat /etc/passwd\" shows a rogue user account.", + "Severity": "LOW", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797" + ], + "PublishedDate": "2023-04-14T22:15:00Z", + "LastModifiedDate": "2023-04-24T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2007-5686", + "PkgID": "passwd@1:4.5-1.1", + "PkgName": "passwd", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-264" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N", + "V2Score": 4.9 + } + }, + "References": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "PublishedDate": "2007-10-28T17:08:00Z", + "LastModifiedDate": "2018-10-15T21:45:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4235", + "PkgID": "passwd@1:4.5-1.1", + "PkgName": "passwd", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "Severity": "LOW", + "CweIDs": [ + "CWE-367" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 3.3, + "V3Score": 4.7 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 3.7, + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235" + ], + "PublishedDate": "2019-12-03T15:15:00Z", + "LastModifiedDate": "2023-02-13T00:28:00Z" + }, + { + "VulnerabilityID": "CVE-2018-7169", + "PkgID": "passwd@1:4.5-1.1", + "PkgName": "passwd", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-7169", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: newgidmap allows unprivileged user to drop supplementary groups potentially allowing privilege escalation", + "Description": "An issue was discovered in shadow 4.5. newgidmap (in shadow-utils) is setuid and allows an unprivileged user to be placed in a user namespace where setgroups(2) is permitted. This allows an attacker to remove themselves from a supplementary group, which may allow access to certain filesystem paths if the administrator has used \"group blacklisting\" (e.g., chmod g-rwx) to restrict access to paths. This flaw effectively reverts a security feature in the kernel (in particular, the /proc/self/setgroups knob) to prevent this sort of privilege escalation.", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-7169", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7169", + "https://github.com/shadow-maint/shadow/pull/97", + "https://nvd.nist.gov/vuln/detail/CVE-2018-7169", + "https://security.gentoo.org/glsa/201805-09", + "https://ubuntu.com/security/notices/USN-5254-1", + "https://www.cve.org/CVERecord?id=CVE-2018-7169" + ], + "PublishedDate": "2018-02-15T20:29:00Z", + "LastModifiedDate": "2019-10-03T00:03:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19882", + "PkgID": "passwd@1:4.5-1.1", + "PkgName": "passwd", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.9, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882" + ], + "PublishedDate": "2019-12-18T16:15:00Z", + "LastModifiedDate": "2020-08-25T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29383", + "PkgID": "passwd@1:4.5-1.1", + "PkgName": "passwd", + "InstalledVersion": "1:4.5-1.1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Improper input validation in shadow-utils package utility chfn", + "Description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that \"cat /etc/passwd\" shows a rogue user account.", + "Severity": "LOW", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797" + ], + "PublishedDate": "2023-04-14T22:15:00Z", + "LastModifiedDate": "2023-04-24T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2020-16156", + "PkgID": "perl-base@5.28.1-6+deb10u1", + "PkgName": "perl-base", + "InstalledVersion": "5.28.1-6+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-16156", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "perl-CPAN: Bypass of verification of signatures in CHECKSUMS files", + "Description": "CPAN 2.28 allows Signature Verification Bypass.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + "https://access.redhat.com/security/cve/CVE-2020-16156", + "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + "https://ubuntu.com/security/notices/USN-5689-1", + "https://ubuntu.com/security/notices/USN-5689-2", + "https://www.cve.org/CVERecord?id=CVE-2020-16156" + ], + "PublishedDate": "2021-12-13T18:15:00Z", + "LastModifiedDate": "2022-04-01T13:26:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31484", + "PkgID": "perl-base@5.28.1-6+deb10u1", + "PkgName": "perl-base", + "InstalledVersion": "5.28.1-6+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31484", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "CPAN.pm before 2.35 does not verify TLS certificates when downloading ...", + "Description": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + "https://github.com/andk/cpanpm/pull/175", + "https://metacpan.org/dist/CPAN/changes", + "https://ubuntu.com/security/notices/USN-6112-1", + "https://ubuntu.com/security/notices/USN-6112-2", + "https://www.openwall.com/lists/oss-security/2023/04/18/14" + ], + "PublishedDate": "2023-04-29T00:15:00Z", + "LastModifiedDate": "2023-05-08T17:11:00Z" + }, + { + "VulnerabilityID": "CVE-2011-4116", + "PkgID": "perl-base@5.28.1-6+deb10u1", + "PkgName": "perl-base", + "InstalledVersion": "5.28.1-6+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-4116", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "perl: File::Temp insecure temporary file handling", + "Description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N", + "V2Score": 1.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2011/11/04/2", + "http://www.openwall.com/lists/oss-security/2011/11/04/4", + "https://access.redhat.com/security/cve/CVE-2011-4116", + "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + "https://seclists.org/oss-sec/2011/q4/238", + "https://www.cve.org/CVERecord?id=CVE-2011-4116" + ], + "PublishedDate": "2020-01-31T18:15:00Z", + "LastModifiedDate": "2020-02-05T22:10:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31486", + "PkgID": "perl-base@5.28.1-6+deb10u1", + "PkgName": "perl-base", + "InstalledVersion": "5.28.1-6+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31486", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTP::Tiny before 0.083, a Perl core module since 5.13.9 and available ...", + "Description": "HTTP::Tiny before 0.083, a Perl core module since 5.13.9 and available standalone on CPAN, has an insecure default TLS configuration where users must opt in to verify certificates.", + "Severity": "LOW", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://github.com/chansen/p5-http-tiny/pull/153", + "https://hackeriet.github.io/cpan-http-tiny-overview/", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + "https://www.openwall.com/lists/oss-security/2023/05/03/4", + "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/" + ], + "PublishedDate": "2023-04-29T00:15:00Z", + "LastModifiedDate": "2023-06-21T18:19:00Z" + }, + { + "VulnerabilityID": "CVE-2005-2541", + "PkgID": "tar@1.30+dfsg-6", + "PkgName": "tar", + "InstalledVersion": "1.30+dfsg-6", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2005-2541", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tar: does not properly warn the user when extracting setuid or setgid files", + "Description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V2Score": 10 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://marc.info/?l=bugtraq\u0026m=112327628230258\u0026w=2", + "https://access.redhat.com/security/cve/CVE-2005-2541", + "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + "https://www.cve.org/CVERecord?id=CVE-2005-2541" + ], + "PublishedDate": "2005-08-10T04:00:00Z", + "LastModifiedDate": "2021-06-18T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9923", + "PkgID": "tar@1.30+dfsg-6", + "PkgName": "tar", + "InstalledVersion": "1.30+dfsg-6", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9923", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tar: null-pointer dereference in pax_decode_header in sparse.c", + "Description": "pax_decode_header in sparse.c in GNU Tar before 1.32 had a NULL pointer dereference when parsing certain archives that have malformed extended headers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://git.savannah.gnu.org/cgit/tar.git/commit/?id=cb07844454d8cc9fb21f53ace75975f91185a120", + "http://lists.opensuse.org/opensuse-security-announce/2019-04/msg00077.html", + "http://savannah.gnu.org/bugs/?55369", + "https://access.redhat.com/security/cve/CVE-2019-9923", + "https://bugs.launchpad.net/ubuntu/+source/tar/+bug/1810241", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-9923", + "https://lists.apache.org/thread.html/r58af02e294bd07f487e2c64ffc0a29b837db5600e33b6e698b9d696b@%3Cissues.bookkeeper.apache.org%3E", + "https://lists.apache.org/thread.html/rf4c02775860db415b4955778a131c2795223f61cb8c6a450893651e4@%3Cissues.bookkeeper.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9923", + "https://ubuntu.com/security/notices/USN-4692-1", + "https://www.cve.org/CVERecord?id=CVE-2019-9923" + ], + "PublishedDate": "2019-03-22T08:29:00Z", + "LastModifiedDate": "2021-06-29T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-20193", + "PkgID": "tar@1.30+dfsg-6", + "PkgName": "tar", + "InstalledVersion": "1.30+dfsg-6", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-20193", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tar: Memory leak in read_header() in list.c", + "Description": "A flaw was found in the src/list.c of tar 1.33 and earlier. This flaw allows an attacker who can submit a crafted input file to tar to cause uncontrolled consumption of memory. The highest threat from this vulnerability is to system availability.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125", + "CWE-401" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-20193", + "https://bugzilla.redhat.com/show_bug.cgi?id=1917565", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20193", + "https://git.savannah.gnu.org/cgit/tar.git/commit/?id=d9d4435692150fa8ff68e1b1a473d187cc3fd777", + "https://nvd.nist.gov/vuln/detail/CVE-2021-20193", + "https://savannah.gnu.org/bugs/?59897", + "https://security.gentoo.org/glsa/202105-29", + "https://ubuntu.com/security/notices/USN-5329-1", + "https://www.cve.org/CVERecord?id=CVE-2021-20193" + ], + "PublishedDate": "2021-03-26T17:15:00Z", + "LastModifiedDate": "2021-06-03T18:53:00Z" + }, + { + "VulnerabilityID": "CVE-2022-48303", + "PkgID": "tar@1.30+dfsg-6", + "PkgName": "tar", + "InstalledVersion": "1.30+dfsg-6", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-48303", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "heap buffer overflow at from_header() in list.c via specially crafted checksum", + "Description": "GNU Tar through 1.34 has a one-byte out-of-bounds read that results in use of uninitialized memory for a conditional jump. Exploitation to change the flow of control has not been demonstrated. The issue occurs in from_header in list.c via a V7 archive in which mtime has approximately 11 whitespace characters.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0959", + "https://access.redhat.com/security/cve/CVE-2022-48303", + "https://bugzilla.redhat.com/2149722", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + "https://errata.almalinux.org/9/ALSA-2023-0959.html", + "https://errata.rockylinux.org/RLSA-2023:0959", + "https://linux.oracle.com/cve/CVE-2022-48303.html", + "https://linux.oracle.com/errata/ELSA-2023-0959.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + "https://savannah.gnu.org/bugs/?62387", + "https://savannah.gnu.org/patch/?10307", + "https://ubuntu.com/security/notices/USN-5900-1", + "https://ubuntu.com/security/notices/USN-5900-2", + "https://www.cve.org/CVERecord?id=CVE-2022-48303" + ], + "PublishedDate": "2023-01-30T04:15:00Z", + "LastModifiedDate": "2023-05-30T17:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-37434", + "VendorIDs": [ + "DLA-3103-1" + ], + "PkgID": "zlib1g@1:1.2.11.dfsg-1", + "PkgName": "zlib1g", + "InstalledVersion": "1:1.2.11.dfsg-1", + "FixedVersion": "1:1.2.11.dfsg-1+deb10u2", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-37434", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "heap-based buffer over-read and overflow in inflate() in inflate.c via a large gzip header extra field", + "Description": "zlib through 1.2.12 has a heap-based buffer over-read or buffer overflow in inflate in inflate.c via a large gzip header extra field. NOTE: only applications that call inflateGetHeader are affected. Some common applications bundle the affected zlib source code but may be unable to call inflateGetHeader (e.g., see the nodejs/node reference).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/37", + "http://seclists.org/fulldisclosure/2022/Oct/38", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/42", + "http://www.openwall.com/lists/oss-security/2022/08/05/2", + "http://www.openwall.com/lists/oss-security/2022/08/09/1", + "https://access.redhat.com/errata/RHSA-2022:8291", + "https://access.redhat.com/security/cve/CVE-2022-37434", + "https://bugzilla.redhat.com/2116639", + "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + "https://errata.almalinux.org/9/ALSA-2022-8291.html", + "https://errata.rockylinux.org/RLSA-2022:8291", + "https://github.com/curl/curl/issues/9271", + "https://github.com/ivd38/zlib_overflow", + "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + "https://linux.oracle.com/cve/CVE-2022-37434.html", + "https://linux.oracle.com/errata/ELSA-2023-1095.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + "https://security.netapp.com/advisory/ntap-20220901-0005/", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://support.apple.com/kb/HT213488", + "https://support.apple.com/kb/HT213489", + "https://support.apple.com/kb/HT213490", + "https://support.apple.com/kb/HT213491", + "https://support.apple.com/kb/HT213493", + "https://support.apple.com/kb/HT213494", + "https://ubuntu.com/security/notices/USN-5570-1", + "https://ubuntu.com/security/notices/USN-5570-2", + "https://ubuntu.com/security/notices/USN-5573-1", + "https://www.cve.org/CVERecord?id=CVE-2022-37434", + "https://www.debian.org/security/2022/dsa-5218" + ], + "PublishedDate": "2022-08-05T07:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-25032", + "VendorIDs": [ + "DSA-5111-1" + ], + "PkgID": "zlib1g@1:1.2.11.dfsg-1", + "PkgName": "zlib1g", + "InstalledVersion": "1:1.2.11.dfsg-1", + "FixedVersion": "1:1.2.11.dfsg-1+deb10u1", + "Layer": { + "Digest": "sha256:a731f855251f11abfa2f315ef4295b982f9bc76d3f46f42add3c8df5297603b8", + "DiffID": "sha256:105a75f1516760f850a8867587cf61881a19e3dbb38571639eae5cb4f0573ff6" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-25032", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "A flaw found in zlib when compressing (not decompressing) certain inputs", + "Description": "zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H", + "V3Score": 8.2 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "http://www.openwall.com/lists/oss-security/2022/03/25/2", + "http://www.openwall.com/lists/oss-security/2022/03/26/1", + "https://access.redhat.com/errata/RHSA-2022:8420", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + "https://access.redhat.com/security/cve/CVE-2018-25032", + "https://bugzilla.redhat.com/2067945", + "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + "https://errata.almalinux.org/9/ALSA-2022-8420.html", + "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + "https://github.com/madler/zlib/issues/605", + "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + "https://linux.oracle.com/cve/CVE-2018-25032.html", + "https://linux.oracle.com/errata/ELSA-2022-9565.html", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + "https://security.gentoo.org/glsa/202210-42", + "https://security.netapp.com/advisory/ntap-20220526-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5355-1", + "https://ubuntu.com/security/notices/USN-5355-2", + "https://ubuntu.com/security/notices/USN-5359-1", + "https://ubuntu.com/security/notices/USN-5359-2", + "https://ubuntu.com/security/notices/USN-5739-1", + "https://www.cve.org/CVERecord?id=CVE-2018-25032", + "https://www.debian.org/security/2022/dsa-5111", + "https://www.openwall.com/lists/oss-security/2022/03/24/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/3", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-03-25T09:15:00Z", + "LastModifiedDate": "2023-04-27T17:50:00Z" + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "DaemonSet", + "Name": "kube-proxy", + "Results": [ + { + "Target": "DaemonSet/kube-proxy", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 126, + "Failures": 15, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 143, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 143, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 152, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 143, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 143, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 152, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV009", + "AVDID": "AVD-KSV-0009", + "Title": "Access to host network", + "Description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "Message": "DaemonSet 'kube-proxy' should not set 'spec.template.spec.hostNetwork' to true", + "Namespace": "builtin.kubernetes.KSV009", + "Query": "data.builtin.kubernetes.KSV009.deny", + "Resolution": "Do not set 'spec.template.spec.hostNetwork' to true.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv009", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 132, + "EndLine": 201, + "Code": { + "Lines": [ + { + "Number": 132, + "Content": " revisionHistoryLimit: 10", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 133, + "Content": " selector:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 134, + "Content": " matchLabels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " k8s-app: kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " template:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 137, + "Content": " metadata:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 138, + "Content": " creationTimestamp: null", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " labels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " k8s-app: kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 141, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 143, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 143, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 152, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 143, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 143, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 152, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 143, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 143, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 152, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV015", + "AVDID": "AVD-KSV-0015", + "Title": "CPU requests not specified", + "Description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.requests.cpu'", + "Namespace": "builtin.kubernetes.KSV015", + "Query": "data.builtin.kubernetes.KSV015.deny", + "Resolution": "Set 'containers[].resources.requests.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv015", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 143, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 143, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 152, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 143, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 143, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 152, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV017", + "AVDID": "AVD-KSV-0017", + "Title": "Privileged container", + "Description": "Privileged containers share namespaces with the host system and do not offer any security. They should be used exclusively for system containers that require high privileges.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.privileged' to false", + "Namespace": "builtin.kubernetes.KSV017", + "Query": "data.builtin.kubernetes.KSV017.deny", + "Resolution": "Change 'containers[].securityContext.privileged' to 'false'.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv017", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv017" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 143, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 143, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 152, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 143, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 143, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 152, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 143, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 143, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 152, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 143, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 143, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 152, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV023", + "AVDID": "AVD-KSV-0023", + "Title": "hostPath volumes mounted", + "Description": "HostPath volumes must be forbidden.", + "Message": "DaemonSet 'kube-proxy' should not set 'spec.template.volumes.hostPath'", + "Namespace": "builtin.kubernetes.KSV023", + "Query": "data.builtin.kubernetes.KSV023.deny", + "Resolution": "Do not set 'spec.volumes[*].hostPath'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv023", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 132, + "EndLine": 201, + "Code": { + "Lines": [ + { + "Number": 132, + "Content": " revisionHistoryLimit: 10", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 133, + "Content": " selector:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 134, + "Content": " matchLabels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " k8s-app: kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " template:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 137, + "Content": " metadata:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 138, + "Content": " creationTimestamp: null", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " labels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " k8s-app: kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 141, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 143, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 143, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 152, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 143, + "EndLine": 168, + "Code": { + "Lines": [ + { + "Number": 143, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 152, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:aggregate-to-admin", + "Results": [ + { + "Target": "ClusterRole/system:aggregate-to-admin", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV050", + "AVDID": "AVD-KSV-0050", + "Title": "Do not allow management of RBAC resources", + "Description": "An effective level of access equivalent to cluster-admin should not be provided.", + "Message": "ClusterRole 'system:aggregate-to-admin' should not have access to resources [\"roles\", \"rolebindings\"] for verbs [\"create\", \"update\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV050", + "Query": "data.builtin.kubernetes.KSV050.deny", + "Resolution": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv050", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 36, + "EndLine": 49, + "Code": { + "Lines": [ + { + "Number": 36, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 37, + "Content": " - rbac.authorization.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " - rolebindings", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - roles", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 42, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 44, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 45, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:aggregate-to-edit", + "Results": [ + { + "Target": "ClusterRole/system:aggregate-to-edit", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 137, + "Failures": 10, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 30, + "EndLine": 42, + "Code": { + "Lines": [ + { + "Number": 30, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 31, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - pods/attach", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - pods/exec", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - pods/portforward", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - pods/proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - services/proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 39, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 63, + "EndLine": 80, + "Code": { + "Lines": [ + { + "Number": 63, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 64, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 65, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 66, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 67, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 68, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 69, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 70, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 71, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 72, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 63, + "EndLine": 80, + "Code": { + "Lines": [ + { + "Number": 63, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 64, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 65, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 66, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 67, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 68, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 69, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 70, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 71, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 72, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 81, + "EndLine": 97, + "Code": { + "Lines": [ + { + "Number": 81, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 82, + "Content": " - apps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 85, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 86, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 87, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 88, + "Content": " - replicasets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 89, + "Content": " - replicasets/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 90, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 108, + "EndLine": 118, + "Code": { + "Lines": [ + { + "Number": 108, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 109, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 110, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 111, + "Content": " - cronjobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 112, + "Content": " - jobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 113, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 114, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 115, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 116, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 117, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 119, + "EndLine": 136, + "Code": { + "Lines": [ + { + "Number": 119, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 120, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 121, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 122, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 123, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 124, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 125, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 126, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 127, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 128, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "ClusterRole 'system:aggregate-to-edit' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 63, + "EndLine": 80, + "Code": { + "Lines": [ + { + "Number": 63, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 64, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 65, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 66, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 67, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 68, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 69, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 70, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 71, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 72, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:aggregate-to-edit' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 63, + "EndLine": 80, + "Code": { + "Lines": [ + { + "Number": 63, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 64, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 65, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 66, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 67, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 68, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 69, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 70, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 71, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 72, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:aggregate-to-edit' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 119, + "EndLine": 136, + "Code": { + "Lines": [ + { + "Number": 119, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 120, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 121, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 122, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 123, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 124, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 125, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 126, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 127, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 128, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:aggregate-to-edit' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 147, + "EndLine": 157, + "Code": { + "Lines": [ + { + "Number": 147, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 148, + "Content": " - networking.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 152, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 153, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 154, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 155, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 156, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:aggregate-to-view", + "Results": [ + { + "Target": "ClusterRole/system:aggregate-to-view", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:auth-delegator", + "Results": [ + { + "Target": "ClusterRole/system:auth-delegator", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:basic-user", + "Results": [ + { + "Target": "ClusterRole/system:basic-user", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:certificates.k8s.io:certificatesigningrequests:nodeclient", + "Results": [ + { + "Target": "ClusterRole/system:certificates.k8s.io:certificatesigningrequests:nodeclient", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:certificates.k8s.io:certificatesigningrequests:selfnodeclient", + "Results": [ + { + "Target": "ClusterRole/system:certificates.k8s.io:certificatesigningrequests:selfnodeclient", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:certificates.k8s.io:kube-apiserver-client-approver", + "Results": [ + { + "Target": "ClusterRole/system:certificates.k8s.io:kube-apiserver-client-approver", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:certificates.k8s.io:kube-apiserver-client-kubelet-approver", + "Results": [ + { + "Target": "ClusterRole/system:certificates.k8s.io:kube-apiserver-client-kubelet-approver", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "etcd-kind-control-plane", + "Results": [ + { + "Target": "k8s.gcr.io/etcd:3.4.13-0 (debian 9.13)", + "Class": "os-pkgs", + "Type": "debian", + "Vulnerabilities": [ + { + "VulnerabilityID": "DLA-2424-1", + "VendorIDs": [ + "DLA-2424-1" + ], + "PkgID": "tzdata@2020a-0+deb9u1", + "PkgName": "tzdata", + "InstalledVersion": "2020a-0+deb9u1", + "FixedVersion": "2020d-0+deb9u1", + "Layer": { + "Digest": "sha256:4000adbbc3eb1099e3a263c418f7c1d7def1fa2de0ae00ba48245cda9389c823", + "DiffID": "sha256:d72a74c56330b347f7d18b64d2effd93edd695fde25dc301d52c37efbcf4844e" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new upstream version", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-2509-1", + "VendorIDs": [ + "DLA-2509-1" + ], + "PkgID": "tzdata@2020a-0+deb9u1", + "PkgName": "tzdata", + "InstalledVersion": "2020a-0+deb9u1", + "FixedVersion": "2020e-0+deb9u1", + "Layer": { + "Digest": "sha256:4000adbbc3eb1099e3a263c418f7c1d7def1fa2de0ae00ba48245cda9389c823", + "DiffID": "sha256:d72a74c56330b347f7d18b64d2effd93edd695fde25dc301d52c37efbcf4844e" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new upstream version", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-2542-1", + "VendorIDs": [ + "DLA-2542-1" + ], + "PkgID": "tzdata@2020a-0+deb9u1", + "PkgName": "tzdata", + "InstalledVersion": "2020a-0+deb9u1", + "FixedVersion": "2021a-0+deb9u1", + "Layer": { + "Digest": "sha256:4000adbbc3eb1099e3a263c418f7c1d7def1fa2de0ae00ba48245cda9389c823", + "DiffID": "sha256:d72a74c56330b347f7d18b64d2effd93edd695fde25dc301d52c37efbcf4844e" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new upstream version", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-2797-1", + "VendorIDs": [ + "DLA-2797-1" + ], + "PkgID": "tzdata@2020a-0+deb9u1", + "PkgName": "tzdata", + "InstalledVersion": "2020a-0+deb9u1", + "FixedVersion": "2021a-0+deb9u2", + "Layer": { + "Digest": "sha256:4000adbbc3eb1099e3a263c418f7c1d7def1fa2de0ae00ba48245cda9389c823", + "DiffID": "sha256:d72a74c56330b347f7d18b64d2effd93edd695fde25dc301d52c37efbcf4844e" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new upstream version", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-2963-1", + "VendorIDs": [ + "DLA-2963-1" + ], + "PkgID": "tzdata@2020a-0+deb9u1", + "PkgName": "tzdata", + "InstalledVersion": "2020a-0+deb9u1", + "FixedVersion": "2021a-0+deb9u3", + "Layer": { + "Digest": "sha256:4000adbbc3eb1099e3a263c418f7c1d7def1fa2de0ae00ba48245cda9389c823", + "DiffID": "sha256:d72a74c56330b347f7d18b64d2effd93edd695fde25dc301d52c37efbcf4844e" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + }, + { + "VulnerabilityID": "DLA-3051-1", + "VendorIDs": [ + "DLA-3051-1" + ], + "PkgID": "tzdata@2020a-0+deb9u1", + "PkgName": "tzdata", + "InstalledVersion": "2020a-0+deb9u1", + "FixedVersion": "2021a-0+deb9u4", + "Layer": { + "Digest": "sha256:4000adbbc3eb1099e3a263c418f7c1d7def1fa2de0ae00ba48245cda9389c823", + "DiffID": "sha256:d72a74c56330b347f7d18b64d2effd93edd695fde25dc301d52c37efbcf4844e" + }, + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tzdata - new timezone database", + "Severity": "UNKNOWN" + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "etcd-kind-control-plane", + "Results": [ + { + "Target": "Pod/etcd-kind-control-plane", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 129, + "Failures": 12, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 225, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --key-file=/etc/kubernetes/pki/etcd/server.key", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 225, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --key-file=/etc/kubernetes/pki/etcd/server.key", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV009", + "AVDID": "AVD-KSV-0009", + "Title": "Access to host network", + "Description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "Message": "Pod 'etcd-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true", + "Namespace": "builtin.kubernetes.KSV009", + "Query": "data.builtin.kubernetes.KSV009.deny", + "Resolution": "Do not set 'spec.template.spec.hostNetwork' to true.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv009", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 169, + "EndLine": 248, + "Code": { + "Lines": [ + { + "Number": 169, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 170, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 178, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 225, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --key-file=/etc/kubernetes/pki/etcd/server.key", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 225, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --key-file=/etc/kubernetes/pki/etcd/server.key", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 225, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --key-file=/etc/kubernetes/pki/etcd/server.key", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 225, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --key-file=/etc/kubernetes/pki/etcd/server.key", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 225, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --key-file=/etc/kubernetes/pki/etcd/server.key", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 225, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --key-file=/etc/kubernetes/pki/etcd/server.key", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV023", + "AVDID": "AVD-KSV-0023", + "Title": "hostPath volumes mounted", + "Description": "HostPath volumes must be forbidden.", + "Message": "Pod 'etcd-kind-control-plane' should not set 'spec.template.volumes.hostPath'", + "Namespace": "builtin.kubernetes.KSV023", + "Query": "data.builtin.kubernetes.KSV023.deny", + "Resolution": "Do not set 'spec.volumes[*].hostPath'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv023", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 169, + "EndLine": 248, + "Code": { + "Lines": [ + { + "Number": 169, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 170, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 178, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 225, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --key-file=/etc/kubernetes/pki/etcd/server.key", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 225, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --key-file=/etc/kubernetes/pki/etcd/server.key", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:certificates.k8s.io:kubelet-serving-approver", + "Results": [ + { + "Target": "ClusterRole/system:certificates.k8s.io:kubelet-serving-approver", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:certificates.k8s.io:legacy-unknown-approver", + "Results": [ + { + "Target": "ClusterRole/system:certificates.k8s.io:legacy-unknown-approver", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:attachdetach-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:attachdetach-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:certificate-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:certificate-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:clusterrole-aggregation-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:clusterrole-aggregation-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:cronjob-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:cronjob-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 2, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 36, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - cronjobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 37, + "EndLine": 48, + "Code": { + "Lines": [ + { + "Number": 37, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 38, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - jobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 42, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 44, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 45, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 46, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:daemon-set-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:daemon-set-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:deployment-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:deployment-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 2, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 37, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - apps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 52, + "EndLine": 64, + "Code": { + "Lines": [ + { + "Number": 52, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 53, + "Content": " - apps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 54, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 55, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 56, + "Content": " - replicasets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 57, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 58, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 59, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 60, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 61, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:endpoint-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:endpoint-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:controller:endpoint-controller' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 37, + "EndLine": 46, + "Code": { + "Lines": [ + { + "Number": 37, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 38, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 42, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 44, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 45, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 46, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:disruption-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:disruption-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:endpointslice-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:endpointslice-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:controller:endpointslice-controller' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 44, + "EndLine": 53, + "Code": { + "Lines": [ + { + "Number": 44, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 45, + "Content": " - discovery.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 46, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 47, + "Content": " - endpointslices", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 48, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 49, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 50, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 51, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 52, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 53, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:endpointslicemirroring-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:endpointslicemirroring-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:controller:endpointslicemirroring-controller' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 49, + "EndLine": 58, + "Code": { + "Lines": [ + { + "Number": 49, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 50, + "Content": " - discovery.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 51, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 52, + "Content": " - endpointslices", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 53, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 54, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 55, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 56, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 57, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 58, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:ephemeral-volume-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:ephemeral-volume-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:generic-garbage-collector", + "Results": [ + { + "Target": "ClusterRole/system:controller:generic-garbage-collector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV046", + "AVDID": "AVD-KSV-0046", + "Title": "No wildcard resource roles", + "Description": "Check whether role permits specific verb on wildcard resources", + "Message": "Role permits specific verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV046", + "Query": "data.builtin.kubernetes.KSV046.deny", + "Resolution": "Create a role which does not permit specific verb on wildcard resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv046", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 38, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - patch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 37, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:expand-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:expand-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 68, + "EndLine": 73, + "Code": { + "Lines": [ + { + "Number": 68, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 69, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 70, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 71, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 72, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 73, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:horizontal-pod-autoscaler", + "Results": [ + { + "Target": "ClusterRole/system:controller:horizontal-pod-autoscaler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV046", + "AVDID": "AVD-KSV-0046", + "Title": "No wildcard resource roles", + "Description": "Check whether role permits specific verb on wildcard resources", + "Message": "Role permits specific verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV046", + "Query": "data.builtin.kubernetes.KSV046.deny", + "Resolution": "Create a role which does not permit specific verb on wildcard resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv046", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 70, + "EndLine": 76, + "Code": { + "Lines": [ + { + "Number": 70, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 71, + "Content": " - custom.metrics.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 72, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 73, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 74, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 75, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 76, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:job-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:job-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 36, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - jobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:namespace-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:namespace-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV046", + "AVDID": "AVD-KSV-0046", + "Title": "No wildcard resource roles", + "Description": "Check whether role permits specific verb on wildcard resources", + "Message": "Role permits specific verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV046", + "Query": "data.builtin.kubernetes.KSV046.deny", + "Resolution": "Create a role which does not permit specific verb on wildcard resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv046", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 44, + "EndLine": 52, + "Code": { + "Lines": [ + { + "Number": 44, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 45, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 46, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 47, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 48, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 49, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 50, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 51, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 52, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:node-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:node-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:persistent-volume-binder", + "Results": [ + { + "Target": "ClusterRole/system:controller:persistent-volume-binder", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 139, + "Failures": 3, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 95, + "EndLine": 100, + "Code": { + "Lines": [ + { + "Number": 95, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 96, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 97, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 98, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 99, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 100, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:controller:persistent-volume-binder' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 78, + "EndLine": 86, + "Code": { + "Lines": [ + { + "Number": 78, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 79, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 80, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 81, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 85, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 86, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:controller:persistent-volume-binder' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 87, + "EndLine": 94, + "Code": { + "Lines": [ + { + "Number": 87, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 88, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 89, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 90, + "Content": " - services", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 91, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 92, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 93, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 94, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:pod-garbage-collector", + "Results": [ + { + "Target": "ClusterRole/system:controller:pod-garbage-collector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:pv-protection-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:pv-protection-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:pvc-protection-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:pvc-protection-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:replicaset-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:replicaset-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 37, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - apps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " - replicasets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:replication-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:replication-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 36, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:resourcequota-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:resourcequota-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV046", + "AVDID": "AVD-KSV-0046", + "Title": "No wildcard resource roles", + "Description": "Check whether role permits specific verb on wildcard resources", + "Message": "Role permits specific verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV046", + "Query": "data.builtin.kubernetes.KSV046.deny", + "Resolution": "Create a role which does not permit specific verb on wildcard resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv046", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 34, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:root-ca-cert-publisher", + "Results": [ + { + "Target": "ClusterRole/system:controller:root-ca-cert-publisher", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "ClusterRole 'system:controller:root-ca-cert-publisher' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 34, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:route-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:route-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:service-account-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:service-account-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:service-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:service-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:statefulset-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:statefulset-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:ttl-after-finished-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:ttl-after-finished-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:ttl-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:ttl-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:coredns", + "Results": [ + { + "Target": "ClusterRole/system:coredns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:discovery", + "Results": [ + { + "Target": "ClusterRole/system:discovery", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:kube-aggregator", + "Results": [ + { + "Target": "ClusterRole/system:kube-aggregator", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:heapster", + "Results": [ + { + "Target": "ClusterRole/system:heapster", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:kube-dns", + "Results": [ + { + "Target": "ClusterRole/system:kube-dns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:kube-controller-manager", + "Results": [ + { + "Target": "ClusterRole/system:kube-controller-manager", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 138, + "Failures": 7, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 67, + "EndLine": 73, + "Code": { + "Lines": [ + { + "Number": 67, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 68, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 69, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 70, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 71, + "Content": " - serviceaccounts", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 72, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 73, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 74, + "EndLine": 79, + "Code": { + "Lines": [ + { + "Number": 74, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 75, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 76, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 77, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 78, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 79, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 80, + "EndLine": 88, + "Code": { + "Lines": [ + { + "Number": 80, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 81, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " - namespaces", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 85, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 86, + "Content": " - serviceaccounts", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 87, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 88, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 89, + "EndLine": 95, + "Code": { + "Lines": [ + { + "Number": 89, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 90, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 91, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 92, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 93, + "Content": " - serviceaccounts", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 94, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 95, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV046", + "AVDID": "AVD-KSV-0046", + "Title": "No wildcard resource roles", + "Description": "Check whether role permits specific verb on wildcard resources", + "Message": "Role permits specific verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV046", + "Query": "data.builtin.kubernetes.KSV046.deny", + "Resolution": "Create a role which does not permit specific verb on wildcard resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv046", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 108, + "EndLine": 114, + "Code": { + "Lines": [ + { + "Number": 108, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 109, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 110, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 111, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 112, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 113, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 114, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:kube-controller-manager' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 52, + "EndLine": 57, + "Code": { + "Lines": [ + { + "Number": 52, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 53, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 54, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 55, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 56, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 57, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:kube-controller-manager' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 58, + "EndLine": 66, + "Code": { + "Lines": [ + { + "Number": 58, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 59, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 60, + "Content": " resourceNames:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 61, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 62, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 63, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 64, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 65, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 66, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:kubelet-api-admin", + "Results": [ + { + "Target": "ClusterRole/system:kubelet-api-admin", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:kube-scheduler", + "Results": [ + { + "Target": "ClusterRole/system:kube-scheduler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 2, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:kube-scheduler' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 52, + "EndLine": 57, + "Code": { + "Lines": [ + { + "Number": 52, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 53, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 54, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 55, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 56, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 57, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:kube-scheduler' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 58, + "EndLine": 66, + "Code": { + "Lines": [ + { + "Number": 58, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 59, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 60, + "Content": " resourceNames:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 61, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 62, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 63, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 64, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 65, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 66, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:monitoring", + "Results": [ + { + "Target": "ClusterRole/system:monitoring", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:node-bootstrapper", + "Results": [ + { + "Target": "ClusterRole/system:node-bootstrapper", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:node", + "Results": [ + { + "Target": "ClusterRole/system:node", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 108, + "EndLine": 116, + "Code": { + "Lines": [ + { + "Number": 108, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 109, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 110, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 111, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 112, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 113, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 114, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 115, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 116, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:node-problem-detector", + "Results": [ + { + "Target": "ClusterRole/system:node-problem-detector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:persistent-volume-provisioner", + "Results": [ + { + "Target": "ClusterRole/system:persistent-volume-provisioner", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:node-proxier", + "Results": [ + { + "Target": "ClusterRole/system:node-proxier", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:public-info-viewer", + "Results": [ + { + "Target": "ClusterRole/system:public-info-viewer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:service-account-issuer-discovery", + "Results": [ + { + "Target": "ClusterRole/system:service-account-issuer-discovery", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:volume-scheduler", + "Results": [ + { + "Target": "ClusterRole/system:volume-scheduler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "trivy-k8s", + "Results": [ + { + "Target": "ClusterRole/trivy-k8s", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "view", + "Results": [ + { + "Target": "ClusterRole/view", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "admin-user", + "Results": [ + { + "Target": "ClusterRoleBinding/admin-user", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV111", + "AVDID": "AVD-KSV-0111", + "Title": "Ensure that the cluster-admin role is only used where required", + "Description": "The RBAC role cluster-admin provides wide-ranging powers over the environment and should be used only where and when needed.", + "Message": "ClusterRoleBinding 'admin-user' with role 'cluster-admin' should be used only when required", + "Namespace": "builtin.kubernetes.KSV111", + "Query": "data.builtin.kubernetes.KSV111.deny", + "Resolution": "Identify all clusterrolebindings to the cluster-admin role. Check if they are used and if they need this role or if they could use a role with fewer privileges.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv111", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv111" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 4, + "EndLine": 26, + "Code": { + "Lines": [ + { + "Number": 4, + "Content": " annotations:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 5, + "Content": " kubectl.kubernetes.io/last-applied-configuration: |", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 6, + "Content": " {\"apiVersion\":\"rbac.authorization.k8s.io/v1\",\"kind\":\"ClusterRoleBinding\",\"metadata\":{\"annotations\":{},\"name\":\"admin-user\"},\"roleRef\":{\"apiGroup\":\"rbac.authorization.k8s.io\",\"kind\":\"ClusterRole\",\"name\":\"cluster-admin\"},\"subjects\":[{\"kind\":\"ServiceAccount\",\"name\":\"admin-user\",\"namespace\":\"kubernetes-dashboard\"}]}", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 7, + "Content": " creationTimestamp: \"2023-06-25T18:59:08Z\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 8, + "Content": " managedFields:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 9, + "Content": " - apiVersion: rbac.authorization.k8s.io/v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 10, + "Content": " fieldsType: FieldsV1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 11, + "Content": " fieldsV1:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 12, + "Content": " f:metadata:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 13, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "cluster-admin", + "Results": [ + { + "Target": "ClusterRoleBinding/cluster-admin", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "kubeadm:get-nodes", + "Results": [ + { + "Target": "ClusterRoleBinding/kubeadm:get-nodes", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "kindnet", + "Results": [ + { + "Target": "ClusterRoleBinding/kindnet", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "kubeadm:kubelet-bootstrap", + "Results": [ + { + "Target": "ClusterRoleBinding/kubeadm:kubelet-bootstrap", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "kubeadm:node-autoapprove-bootstrap", + "Results": [ + { + "Target": "ClusterRoleBinding/kubeadm:node-autoapprove-bootstrap", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "kubeadm:node-autoapprove-certificate-rotation", + "Results": [ + { + "Target": "ClusterRoleBinding/kubeadm:node-autoapprove-certificate-rotation", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "kubeadm:node-proxier", + "Results": [ + { + "Target": "ClusterRoleBinding/kubeadm:node-proxier", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "kubernetes-dashboard", + "Results": [ + { + "Target": "ClusterRoleBinding/kubernetes-dashboard", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "local-path-provisioner-bind", + "Results": [ + { + "Target": "ClusterRoleBinding/local-path-provisioner-bind", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "manager-rolebinding", + "Results": [ + { + "Target": "ClusterRoleBinding/manager-rolebinding", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "proxy-rolebinding", + "Results": [ + { + "Target": "ClusterRoleBinding/proxy-rolebinding", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:basic-user", + "Results": [ + { + "Target": "ClusterRoleBinding/system:basic-user", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:attachdetach-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:attachdetach-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:certificate-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:certificate-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:clusterrole-aggregation-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:clusterrole-aggregation-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:cronjob-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:cronjob-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:daemon-set-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:daemon-set-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:deployment-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:deployment-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:disruption-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:disruption-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:endpoint-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:endpoint-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:endpointslice-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:endpointslice-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:ephemeral-volume-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:ephemeral-volume-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:endpointslicemirroring-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:endpointslicemirroring-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:expand-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:expand-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:generic-garbage-collector", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:generic-garbage-collector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:horizontal-pod-autoscaler", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:horizontal-pod-autoscaler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:namespace-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:namespace-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:job-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:job-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:node-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:node-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:persistent-volume-binder", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:persistent-volume-binder", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:pod-garbage-collector", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:pod-garbage-collector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:pv-protection-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:pv-protection-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:pvc-protection-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:pvc-protection-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:replicaset-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:replicaset-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:replication-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:replication-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:resourcequota-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:resourcequota-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:route-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:route-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:root-ca-cert-publisher", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:root-ca-cert-publisher", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:service-account-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:service-account-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:service-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:service-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:statefulset-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:statefulset-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:coredns", + "Results": [ + { + "Target": "ClusterRoleBinding/system:coredns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:ttl-after-finished-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:ttl-after-finished-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:ttl-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:ttl-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:discovery", + "Results": [ + { + "Target": "ClusterRoleBinding/system:discovery", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:kube-controller-manager", + "Results": [ + { + "Target": "ClusterRoleBinding/system:kube-controller-manager", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:kube-dns", + "Results": [ + { + "Target": "ClusterRoleBinding/system:kube-dns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:kube-scheduler", + "Results": [ + { + "Target": "ClusterRoleBinding/system:kube-scheduler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:monitoring", + "Results": [ + { + "Target": "ClusterRoleBinding/system:monitoring", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:node", + "Results": [ + { + "Target": "ClusterRoleBinding/system:node", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:node-proxier", + "Results": [ + { + "Target": "ClusterRoleBinding/system:node-proxier", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:public-info-viewer", + "Results": [ + { + "Target": "ClusterRoleBinding/system:public-info-viewer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:service-account-issuer-discovery", + "Results": [ + { + "Target": "ClusterRoleBinding/system:service-account-issuer-discovery", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:volume-scheduler", + "Results": [ + { + "Target": "ClusterRoleBinding/system:volume-scheduler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "trivy-k8s", + "Results": [ + { + "Target": "ClusterRoleBinding/trivy-k8s", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV111", + "AVDID": "AVD-KSV-0111", + "Title": "Ensure that the cluster-admin role is only used where required", + "Description": "The RBAC role cluster-admin provides wide-ranging powers over the environment and should be used only where and when needed.", + "Message": "ClusterRoleBinding 'trivy-k8s' with role 'cluster-admin' should be used only when required", + "Namespace": "builtin.kubernetes.KSV111", + "Query": "data.builtin.kubernetes.KSV111.deny", + "Resolution": "Identify all clusterrolebindings to the cluster-admin role. Check if they are used and if they need this role or if they could use a role with fewer privileges.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv111", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv111" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 4, + "EndLine": 32, + "Code": { + "Lines": [ + { + "Number": 4, + "Content": " annotations:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 5, + "Content": " meta.helm.sh/release-name: trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 6, + "Content": " meta.helm.sh/release-namespace: integration-tests", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 7, + "Content": " creationTimestamp: \"2023-06-25T18:59:27Z\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 8, + "Content": " labels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 9, + "Content": " app.kubernetes.io/managed-by: Helm", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 10, + "Content": " managedFields:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 11, + "Content": " - apiVersion: rbac.authorization.k8s.io/v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 12, + "Content": " fieldsType: FieldsV1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 13, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "NodeInfo", + "Name": "kind-control-plane", + "Results": [ + { + "Target": "NodeInfo/kind-control-plane", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 135, + "Failures": 6, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KCV0056", + "AVDID": "AVD-KCV-0056", + "Title": "Ensure that the container network interface file permissions are set to 600 or more restrictive", + "Description": "Ensure that the container network interface file has permissions of 600 or more restrictive.", + "Message": "Ensure that the Container Network Interface specification file permissions is set to 600 or more restrictive", + "Namespace": "builtin.kubernetes.KCV0056", + "Query": "data.builtin.kubernetes.KCV0056.deny", + "Resolution": "Change the container network interface file path/to/cni/files permissions of 600 or more restrictive ", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0056", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0059", + "AVDID": "AVD-KCV-0059", + "Title": "Ensure that the etcd data directory ownership is set to etcd:etcd", + "Description": "Ensure that the etcd data directory ownership is set to etcd:etcd.", + "Message": "Ensure that the etcd data directory ownership is set to etcd:etcd", + "Namespace": "builtin.kubernetes.KCV0059", + "Query": "data.builtin.kubernetes.KCV0059.deny", + "Resolution": "Change the etcd data directory /var/lib/etcd ownership to etcd:etcd", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0059", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0059" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0068", + "AVDID": "AVD-KCV-0068", + "Title": "Ensure that the Kubernetes PKI certificate file permission is set to 600", + "Description": "Ensure that the Kubernetes PKI certificate file permission is set to 600.", + "Message": "Ensure that the Kubernetes PKI certificate file permission is set to 600", + "Namespace": "builtin.kubernetes.KCV0068", + "Query": "data.builtin.kubernetes.KCV0068.deny", + "Resolution": "Change the Kubernetes PKI certificate file /etc/kubernetes/pki/*.crt permission to 600", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0068", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0068" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0069", + "AVDID": "AVD-KCV-0069", + "Title": "Ensure that the kubelet service file permissions are set to 600 or more restrictive", + "Description": "Ensure that the kubelet service file has permissions of 600 or more restrictive.", + "Message": "Ensure that the kubelet service file permissions are set to 600 or more restrictive", + "Namespace": "builtin.kubernetes.KCV0069", + "Query": "data.builtin.kubernetes.KCV0069.deny", + "Resolution": "Change the kubelet service file /etc/systemd/system/kubelet.service.d/10-kubeadm.conf permissions of 600 or more restrictive ", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0069", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0069" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0075", + "AVDID": "AVD-KCV-0075", + "Title": "Ensure that the certificate authorities file permissions are set to 600 or more restrictive", + "Description": "Ensure that the certificate authorities file has permissions of 600 or more restrictive.", + "Message": "Ensure that the certificate authorities file permissions are set to 600 or more restrictive", + "Namespace": "builtin.kubernetes.KCV0075", + "Query": "data.builtin.kubernetes.KCV0075.deny", + "Resolution": "Change the certificate authorities file permissions to 600 or more restrictive if exist", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0075", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0075" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0077", + "AVDID": "AVD-KCV-0077", + "Title": "If the kubelet config.yaml configuration file is being used validate permissions set to 600 or more restrictive", + "Description": "Ensure that if the kubelet refers to a configuration file with the --config argument, that file has permissions of 600 or more restrictive.", + "Message": "Ensure that if the kubelet refers to a configuration file with the --config argument, that file has permissions of 600 or more restrictive.", + "Namespace": "builtin.kubernetes.KCV0077", + "Query": "data.builtin.kubernetes.KCV0077.deny", + "Resolution": "Change the kubelet config yaml permissions to 600 or more restrictive if exist", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0077", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0077" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + } + ] + } + ] + }, + { + "Kind": "Node", + "Name": "kind-control-plane", + "Results": [ + { + "Target": "Node/kind-control-plane", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + } + ] +} diff --git a/scanners/trivy/parser/__testFiles__/local-k8s-scan-result.json.license b/scanners/trivy/parser/__testFiles__/local-k8s-scan-result.json.license new file mode 100644 index 0000000000..c95bc37185 --- /dev/null +++ b/scanners/trivy/parser/__testFiles__/local-k8s-scan-result.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: the secureCodeBox authors + +SPDX-License-Identifier: Apache-2.0 diff --git a/scanners/trivy/parser/__testFiles__/trivy--k8s-scan-results.json b/scanners/trivy/parser/__testFiles__/trivy--k8s-scan-results.json new file mode 100644 index 0000000000..418f2eeac6 --- /dev/null +++ b/scanners/trivy/parser/__testFiles__/trivy--k8s-scan-results.json @@ -0,0 +1,54134 @@ +{ + "ClusterName": "", + "Resources": [ + { + "Namespace": "securecodebox-system", + "Kind": "Deployment", + "Name": "securecodebox-controller-manager", + "Error": "scan error: unable to initialize a scanner: unable to initialize a docker scanner: 4 errors occurred:\n\t* unable to inspect the image (docker.io/securecodebox/operator:sha-b2542c45): Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?\n\t* containerd socket not found: /run/containerd/containerd.sock\n\t* unable to initialize Podman client: no podman socket found: stat podman/podman.sock: no such file or directory\n\t* GET https://index.docker.io/v2/securecodebox/operator/manifests/sha-b2542c45: MANIFEST_UNKNOWN: manifest unknown; unknown tag=sha-b2542c45\n\n" + }, + { + "Namespace": "securecodebox-system", + "Kind": "Deployment", + "Name": "securecodebox-controller-manager", + "Results": [ + { + "Target": "Deployment/securecodebox-controller-manager", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 137, + "Failures": 4, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'manager' of Deployment 'securecodebox-controller-manager' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 221, + "EndLine": 297, + "Code": { + "Lines": [ + { + "Number": 221, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --leader-elect", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - /manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - name: TELEMETRY_ENABLED", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " value: \"true\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - name: VERSION", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " value: v3.1.0-alpha1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 230, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'manager' of Deployment 'securecodebox-controller-manager' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 221, + "EndLine": 297, + "Code": { + "Lines": [ + { + "Number": 221, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --leader-elect", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - /manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - name: TELEMETRY_ENABLED", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " value: \"true\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - name: VERSION", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " value: v3.1.0-alpha1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 230, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 221, + "EndLine": 297, + "Code": { + "Lines": [ + { + "Number": 221, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --leader-elect", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - /manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - name: TELEMETRY_ENABLED", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " value: \"true\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - name: VERSION", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " value: v3.1.0-alpha1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 230, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 221, + "EndLine": 297, + "Code": { + "Lines": [ + { + "Number": 221, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 222, + "Content": " - --leader-elect", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 223, + "Content": " command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 224, + "Content": " - /manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - name: TELEMETRY_ENABLED", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " value: \"true\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - name: VERSION", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " value: v3.1.0-alpha1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 230, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Deployment", + "Name": "coredns", + "Results": [ + { + "Target": "coredns", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2020-8911", + "PkgName": "github.com/aws/aws-sdk-go", + "InstalledVersion": "v1.40.54", + "Layer": { + "Digest": "sha256:6e1b7c06e42d029dfc534a04575d8e5fbf5044f5030c39b0b1c1aa9e2f8dd76d", + "DiffID": "sha256:80e4a2390030c25a0208cd360584ee013fd6747d4e4c156345523b99e5faa57c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-8911", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "aws/aws-sdk-go: CBC padding oracle issue in AWS S3 Crypto SDK for golang", + "Description": "A padding oracle vulnerability exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. The SDK allows users to encrypt files with AES-CBC without computing a Message Authentication Code (MAC), which then allows an attacker who has write access to the target's S3 bucket and can observe whether or not an endpoint with access to the key can decrypt a file, they can reconstruct the plaintext with (on average) 128*length (plaintext) queries to the endpoint, by exploiting CBC's ability to manipulate the bytes of the next block and PKCS5 padding errors. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N", + "V3Score": 5.6 + }, + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N", + "V2Score": 2.1, + "V3Score": 5.6 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N", + "V3Score": 5.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-8911", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869800", + "https://github.com/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8911", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8911" + ], + "PublishedDate": "2020-08-11T20:15:00Z", + "LastModifiedDate": "2020-08-18T13:37:00Z" + }, + { + "VulnerabilityID": "CVE-2020-8912", + "PkgName": "github.com/aws/aws-sdk-go", + "InstalledVersion": "v1.40.54", + "Layer": { + "Digest": "sha256:6e1b7c06e42d029dfc534a04575d8e5fbf5044f5030c39b0b1c1aa9e2f8dd76d", + "DiffID": "sha256:80e4a2390030c25a0208cd360584ee013fd6747d4e4c156345523b99e5faa57c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-8912", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "aws-sdk-go: In-band key negotiation issue in AWS S3 Crypto SDK for golang", + "Description": "A vulnerability in the in-band key negotiation exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. An attacker with write access to the targeted bucket can change the encryption algorithm of an object in the bucket, which can then allow them to change AES-GCM to AES-CTR. Using this in combination with a decryption oracle can reveal the authentication key used by AES-GCM as decrypting the GMAC tag leaves the authentication key recoverable as an algebraic equation. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.5 + }, + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 2.1, + "V3Score": 2.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-8912", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869801", + "https://github.com/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8912", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8912" + ], + "PublishedDate": "2020-08-11T20:15:00Z", + "LastModifiedDate": "2020-08-17T19:31:00Z" + }, + { + "VulnerabilityID": "CVE-2022-21698", + "PkgName": "github.com/prometheus/client_golang", + "InstalledVersion": "v1.11.0", + "FixedVersion": "1.11.1", + "Layer": { + "Digest": "sha256:6e1b7c06e42d029dfc534a04575d8e5fbf5044f5030c39b0b1c1aa9e2f8dd76d", + "DiffID": "sha256:80e4a2390030c25a0208cd360584ee013fd6747d4e4c156345523b99e5faa57c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-21698", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "Denial of service using InstrumentHandlerCounter", + "Description": "client_golang is the instrumentation library for Go applications in Prometheus, and the promhttp package in client_golang provides tooling around HTTP servers and clients. In client_golang prior to version 1.11.1, HTTP server is susceptible to a Denial of Service through unbounded cardinality, and potential memory exhaustion, when handling requests with non-standard HTTP methods. In order to be affected, an instrumented software must use any of `promhttp.InstrumentHandler*` middleware except `RequestsInFlight`; not filter any specific methods (e.g GET) before middleware; pass metric with `method` label name to our middleware; and not have any firewall/LB/proxy that filters away requests with unknown `method`. client_golang version 1.11.1 contains a patch for this issue. Several workarounds are available, including removing the `method` label name from counter/gauge used in the InstrumentHandler; turning off affected promhttp handlers; adding custom middleware before promhttp handler that will sanitize the request method given by Go http.Request; and using a reverse proxy or web application firewall, configured to only allow a limited set of methods.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8057", + "https://access.redhat.com/security/cve/CVE-2022-21698", + "https://bugzilla.redhat.com/2044628", + "https://bugzilla.redhat.com/2045880", + "https://bugzilla.redhat.com/2050648", + "https://bugzilla.redhat.com/2050742", + "https://bugzilla.redhat.com/2050743", + "https://bugzilla.redhat.com/2065290", + "https://bugzilla.redhat.com/2107342", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107376", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2107390", + "https://bugzilla.redhat.com/2107392", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044628", + "https://bugzilla.redhat.com/show_bug.cgi?id=2045880", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050648", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050742", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050743", + "https://bugzilla.redhat.com/show_bug.cgi?id=2055349", + "https://bugzilla.redhat.com/show_bug.cgi?id=2065290", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104367", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107342", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107376", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107390", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107392", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23648", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1962", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21673", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21698", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21702", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21703", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21713", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28131", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30631", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30633", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://errata.almalinux.org/9/ALSA-2022-8057.html", + "https://errata.rockylinux.org/RLSA-2022:8057", + "https://github.com/advisories/GHSA-cg3q-j54f-5p7p", + "https://github.com/prometheus/client_golang/pull/962", + "https://github.com/prometheus/client_golang/pull/987", + "https://github.com/prometheus/client_golang/releases/tag/v1.11.1", + "https://github.com/prometheus/client_golang/security/advisories/GHSA-cg3q-j54f-5p7p", + "https://linux.oracle.com/cve/CVE-2022-21698.html", + "https://linux.oracle.com/errata/ELSA-2022-8057.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2IK53GWZ475OQ6ENABKMJMTOBZG6LXUR/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2PFW6Q2LXXWTFRTMTRN4ZGADFRQPKJ3D/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36GUEPA5TPSC57DZTPYPBL6T7UPQ2FRH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3L6GDN5S5QZSCFKWD3GKL2RDZQ6B4UWA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4KDETHL5XCT6RZN2BBNOCEXRZ2W3SFU3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5OGNAFVXSMTTT2UPH6CS3IH6L3KM42Q7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7V7I72LSQ3IET3QJR6QPAVGJZ4CBDLN5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AK7CJBCGERCRXYUR2EWDSSDVAQMTAZGX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FY3N7H6VSDZM37B4SKM2PFFCUWU7QYWN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HLAQRRGNSO5MYCPAXGPH2OCSHOGHSQMQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KBMVIQFKQDSSTHVVJWJ4QH6TW3JVB7XZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MH6ALXEQXIFQRQFNJ5Y2MJ5DFPIX76VN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RN7JGC2LVHPEGSJYODFUV5FEKPBVG4D7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SASRKYHT5ZFSVMJUQUG3UAEQRJYGJKAR/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZKORFJTRRDJCWBTJPISKKCVMMMJBIRLG/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-21698", + "https://pkg.go.dev/vuln/GO-2022-0322", + "https://www.cve.org/CVERecord?id=CVE-2022-21698" + ], + "PublishedDate": "2022-02-15T16:15:00Z", + "LastModifiedDate": "2022-12-09T16:46:00Z" + }, + { + "VulnerabilityID": "CVE-2021-43565", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20210513164829-c07d793c2f9a", + "FixedVersion": "0.0.0-20211202192323-5770296d904e", + "Layer": { + "Digest": "sha256:6e1b7c06e42d029dfc534a04575d8e5fbf5044f5030c39b0b1c1aa9e2f8dd76d", + "DiffID": "sha256:80e4a2390030c25a0208cd360584ee013fd6747d4e4c156345523b99e5faa57c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-43565", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang.org/x/crypto: empty plaintext packet causes panic", + "Description": "The x/crypto/ssh package before 0.0.0-20211202192323-5770296d904e of golang.org/x/crypto allows an attacker to panic an SSH server.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-43565", + "https://github.com/advisories/GHSA-gwc9-m7rh-j2ww", + "https://go.dev/cl/368814/", + "https://go.dev/issues/49932", + "https://groups.google.com/forum/#!forum/golang-announce", + "https://groups.google.com/g/golang-announce/c/2AR1sKiM-Qs", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43565", + "https://pkg.go.dev/vuln/GO-2022-0968", + "https://www.cve.org/CVERecord?id=CVE-2021-43565" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-09-09T03:38:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27191", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20210513164829-c07d793c2f9a", + "FixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "Layer": { + "Digest": "sha256:6e1b7c06e42d029dfc534a04575d8e5fbf5044f5030c39b0b1c1aa9e2f8dd76d", + "DiffID": "sha256:80e4a2390030c25a0208cd360584ee013fd6747d4e4c156345523b99e5faa57c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27191", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "crash in a golang.org/x/crypto/ssh server", + "Description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191" + ], + "PublishedDate": "2022-03-18T07:15:00Z", + "LastModifiedDate": "2022-10-26T17:52:00Z" + }, + { + "VulnerabilityID": "CVE-2021-44716", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20210614182718-04defd469f4e", + "FixedVersion": "0.0.0-20211209124913-491a49abca63", + "Layer": { + "Digest": "sha256:6e1b7c06e42d029dfc534a04575d8e5fbf5044f5030c39b0b1c1aa9e2f8dd76d", + "DiffID": "sha256:80e4a2390030c25a0208cd360584ee013fd6747d4e4c156345523b99e5faa57c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-44716", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: net/http: limit growth of header canonicalization cache", + "Description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/go/issues/50058", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716" + ], + "PublishedDate": "2022-01-01T05:15:00Z", + "LastModifiedDate": "2023-04-20T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20210614182718-04defd469f4e", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:6e1b7c06e42d029dfc534a04575d8e5fbf5044f5030c39b0b1c1aa9e2f8dd76d", + "DiffID": "sha256:80e4a2390030c25a0208cd360584ee013fd6747d4e4c156345523b99e5faa57c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20210614182718-04defd469f4e", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:6e1b7c06e42d029dfc534a04575d8e5fbf5044f5030c39b0b1c1aa9e2f8dd76d", + "DiffID": "sha256:80e4a2390030c25a0208cd360584ee013fd6747d4e4c156345523b99e5faa57c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20210614182718-04defd469f4e", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:6e1b7c06e42d029dfc534a04575d8e5fbf5044f5030c39b0b1c1aa9e2f8dd76d", + "DiffID": "sha256:80e4a2390030c25a0208cd360584ee013fd6747d4e4c156345523b99e5faa57c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29526", + "PkgName": "golang.org/x/sys", + "InstalledVersion": "v0.0.0-20210917161153-d61c044b1678", + "FixedVersion": "0.0.0-20220412211240-33da011f77ad", + "Layer": { + "Digest": "sha256:6e1b7c06e42d029dfc534a04575d8e5fbf5044f5030c39b0b1c1aa9e2f8dd76d", + "DiffID": "sha256:80e4a2390030c25a0208cd360584ee013fd6747d4e4c156345523b99e5faa57c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29526", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "faccessat checks wrong group", + "Description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526" + ], + "PublishedDate": "2022-06-23T17:15:00Z", + "LastModifiedDate": "2022-08-19T12:50:00Z" + }, + { + "VulnerabilityID": "CVE-2021-38561", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.6", + "FixedVersion": "0.3.7", + "Layer": { + "Digest": "sha256:6e1b7c06e42d029dfc534a04575d8e5fbf5044f5030c39b0b1c1aa9e2f8dd76d", + "DiffID": "sha256:80e4a2390030c25a0208cd360584ee013fd6747d4e4c156345523b99e5faa57c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-38561", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "Description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561" + ], + "PublishedDate": "2022-12-26T06:15:00Z", + "LastModifiedDate": "2023-01-05T04:52:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.6", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:6e1b7c06e42d029dfc534a04575d8e5fbf5044f5030c39b0b1c1aa9e2f8dd76d", + "DiffID": "sha256:80e4a2390030c25a0208cd360584ee013fd6747d4e4c156345523b99e5faa57c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + }, + { + "VulnerabilityID": "CVE-2022-28948", + "PkgName": "gopkg.in/yaml.v3", + "InstalledVersion": "v3.0.0-20210107192922-496545a6307b", + "FixedVersion": "3.0.0-20220521103104-8f96da9f5d5e", + "Layer": { + "Digest": "sha256:6e1b7c06e42d029dfc534a04575d8e5fbf5044f5030c39b0b1c1aa9e2f8dd76d", + "DiffID": "sha256:80e4a2390030c25a0208cd360584ee013fd6747d4e4c156345523b99e5faa57c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-28948", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "crash when attempting to deserialize invalid input", + "Description": "An issue in the Unmarshal function in Go-Yaml v3 causes the program to crash when attempting to deserialize invalid input.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-502" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-28948", + "https://github.com/advisories/GHSA-hp87-p4gw-j4gq", + "https://github.com/go-yaml/yaml/commit/8f96da9f5d5eff988554c1aae1784627c4bf6754", + "https://github.com/go-yaml/yaml/issues/666", + "https://nvd.nist.gov/vuln/detail/CVE-2022-28948", + "https://security.netapp.com/advisory/ntap-20220923-0006/", + "https://www.cve.org/CVERecord?id=CVE-2022-28948" + ], + "PublishedDate": "2022-05-19T20:15:00Z", + "LastModifiedDate": "2022-10-28T19:06:00Z" + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Deployment", + "Name": "coredns", + "Results": [ + { + "Target": "Deployment/coredns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 134, + "Failures": 7, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'coredns' of Deployment 'coredns' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 189, + "EndLine": 243, + "Code": { + "Lines": [ + { + "Number": 189, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 190, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 191, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.6", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 198, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'coredns' of Deployment 'coredns' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 189, + "EndLine": 243, + "Code": { + "Lines": [ + { + "Number": 189, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 190, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 191, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.6", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 198, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'coredns' of Deployment 'coredns' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 189, + "EndLine": 243, + "Code": { + "Lines": [ + { + "Number": 189, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 190, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 191, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.6", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 198, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'coredns' of Deployment 'coredns' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 189, + "EndLine": 243, + "Code": { + "Lines": [ + { + "Number": 189, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 190, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 191, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.6", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 198, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV022", + "AVDID": "AVD-KSV-0022", + "Title": "Non-default capabilities added", + "Description": "Adding NET_RAW or capabilities beyond the default set must be disallowed.", + "Message": "Container 'coredns' of Deployment 'coredns' should not set 'securityContext.capabilities.add'", + "Namespace": "builtin.kubernetes.KSV022", + "Query": "data.builtin.kubernetes.KSV022.deny", + "Resolution": "Do not set spec.containers[*].securityContext.capabilities.add and spec.initContainers[*].securityContext.capabilities.add", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv022", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv022" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 189, + "EndLine": 243, + "Code": { + "Lines": [ + { + "Number": 189, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 190, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 191, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.6", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 198, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 189, + "EndLine": 243, + "Code": { + "Lines": [ + { + "Number": 189, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 190, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 191, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.6", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 198, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 189, + "EndLine": 243, + "Code": { + "Lines": [ + { + "Number": 189, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 190, + "Content": " - -conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 191, + "Content": " - /etc/coredns/Corefile", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 192, + "Content": " image: k8s.gcr.io/coredns/coredns:v1.8.6", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 193, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 194, + "Content": " livenessProbe:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " failureThreshold: 5", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " httpGet:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " path: /health", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 198, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "local-path-storage", + "Kind": "Deployment", + "Name": "local-path-provisioner", + "Results": [ + { + "Target": "docker.io/kindest/local-path-provisioner:v0.0.22-kind.0 (debian 11.6)", + "Class": "os-pkgs", + "Type": "debian", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2010-4756", + "PkgID": "libc6@2.31-13+deb11u5", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "Severity": "LOW", + "CweIDs": [ + "CWE-399" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V2Score": 4 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V2Score": 5 + } + }, + "References": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756" + ], + "PublishedDate": "2011-03-02T20:00:00Z", + "LastModifiedDate": "2021-09-01T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-20796", + "PkgID": "libc6@2.31-13+deb11u5", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796" + ], + "PublishedDate": "2019-02-26T02:29:00Z", + "LastModifiedDate": "2019-11-05T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010022", + "PkgID": "libc6@2.31-13+deb11u5", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack guard protection bypass", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2021-06-10T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010023", + "PkgID": "libc6@2.31-13+deb11u5", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "Description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010024", + "PkgID": "libc6@2.31-13+deb11u5", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: ASLR bypass using cache of thread stack and heap", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-200" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010025", + "PkgID": "libc6@2.31-13+deb11u5", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: information disclosure of heap addresses of pthread_created thread", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-330" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9192", + "PkgID": "libc6@2.31-13+deb11u5", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192" + ], + "PublishedDate": "2019-02-26T18:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0464", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u4", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0464", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "Description": "A security vulnerability has been identified in all supported versions\n\nof OpenSSL related to the verification of X.509 certificate chains\nthat include policy constraints. Attackers may be able to exploit this\nvulnerability by creating a malicious certificate chain that triggers\nexponential use of computational resources, leading to a denial-of-service\n(DoS) attack on affected systems.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt" + ], + "PublishedDate": "2023-03-22T17:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2650", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u4", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0465", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u4", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0465", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Invalid certificate policies in leaf certificates are silently ignored", + "Description": "Applications that use a non-default option when verifying certificates may be\nvulnerable to an attack from a malicious CA to circumvent certain checks.\n\nInvalid certificate policies in leaf certificates are silently ignored by\nOpenSSL and other certificate policy checks are skipped for that certificate.\nA malicious CA could use this to deliberately assert invalid certificate policies\nin order to circumvent policy checking on the certificate altogether.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0466", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u4", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0466", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Certificate policy check not enabled", + "Description": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2007-6755", + "PkgID": "libssl1.1@1.1.1n-0+deb11u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dual_EC_DRBG: weak pseudo random number generator", + "Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + } + }, + "References": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html" + ], + "PublishedDate": "2013-10-11T22:55:00Z", + "LastModifiedDate": "2022-11-01T14:44:00Z" + }, + { + "VulnerabilityID": "CVE-2010-0928", + "PkgID": "libssl1.1@1.1.1n-0+deb11u4", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: RSA authentication weakness", + "Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-310" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:N/A:N", + "V2Score": 4 + } + }, + "References": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928" + ], + "PublishedDate": "2010-03-05T19:30:00Z", + "LastModifiedDate": "2017-08-17T01:32:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0464", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u4", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u4", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0464", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "Description": "A security vulnerability has been identified in all supported versions\n\nof OpenSSL related to the verification of X.509 certificate chains\nthat include policy constraints. Attackers may be able to exploit this\nvulnerability by creating a malicious certificate chain that triggers\nexponential use of computational resources, leading to a denial-of-service\n(DoS) attack on affected systems.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt" + ], + "PublishedDate": "2023-03-22T17:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2650", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u4", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u4", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0465", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u4", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u4", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0465", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Invalid certificate policies in leaf certificates are silently ignored", + "Description": "Applications that use a non-default option when verifying certificates may be\nvulnerable to an attack from a malicious CA to circumvent certain checks.\n\nInvalid certificate policies in leaf certificates are silently ignored by\nOpenSSL and other certificate policy checks are skipped for that certificate.\nA malicious CA could use this to deliberately assert invalid certificate policies\nin order to circumvent policy checking on the certificate altogether.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0466", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u4", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u4", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0466", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Certificate policy check not enabled", + "Description": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2007-6755", + "PkgID": "openssl@1.1.1n-0+deb11u4", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dual_EC_DRBG: weak pseudo random number generator", + "Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + } + }, + "References": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html" + ], + "PublishedDate": "2013-10-11T22:55:00Z", + "LastModifiedDate": "2022-11-01T14:44:00Z" + }, + { + "VulnerabilityID": "CVE-2010-0928", + "PkgID": "openssl@1.1.1n-0+deb11u4", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:c59673e9fae3f9d588110a25acdf7240f3a5d97c40fb86ccc71c23bf7abbea53", + "DiffID": "sha256:5380d9872d052e2c833beed3dcaa616737f5a41e188f7a718e02ad91fdfcc63e" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: RSA authentication weakness", + "Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-310" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:N/A:N", + "V2Score": 4 + } + }, + "References": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928" + ], + "PublishedDate": "2010-03-05T19:30:00Z", + "LastModifiedDate": "2017-08-17T01:32:00Z" + } + ] + }, + { + "Target": "usr/local/bin/local-path-provisioner", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-21698", + "PkgName": "github.com/prometheus/client_golang", + "InstalledVersion": "v1.1.0", + "FixedVersion": "1.11.1", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-21698", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "Denial of service using InstrumentHandlerCounter", + "Description": "client_golang is the instrumentation library for Go applications in Prometheus, and the promhttp package in client_golang provides tooling around HTTP servers and clients. In client_golang prior to version 1.11.1, HTTP server is susceptible to a Denial of Service through unbounded cardinality, and potential memory exhaustion, when handling requests with non-standard HTTP methods. In order to be affected, an instrumented software must use any of `promhttp.InstrumentHandler*` middleware except `RequestsInFlight`; not filter any specific methods (e.g GET) before middleware; pass metric with `method` label name to our middleware; and not have any firewall/LB/proxy that filters away requests with unknown `method`. client_golang version 1.11.1 contains a patch for this issue. Several workarounds are available, including removing the `method` label name from counter/gauge used in the InstrumentHandler; turning off affected promhttp handlers; adding custom middleware before promhttp handler that will sanitize the request method given by Go http.Request; and using a reverse proxy or web application firewall, configured to only allow a limited set of methods.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8057", + "https://access.redhat.com/security/cve/CVE-2022-21698", + "https://bugzilla.redhat.com/2044628", + "https://bugzilla.redhat.com/2045880", + "https://bugzilla.redhat.com/2050648", + "https://bugzilla.redhat.com/2050742", + "https://bugzilla.redhat.com/2050743", + "https://bugzilla.redhat.com/2065290", + "https://bugzilla.redhat.com/2107342", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107376", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2107390", + "https://bugzilla.redhat.com/2107392", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044628", + "https://bugzilla.redhat.com/show_bug.cgi?id=2045880", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050648", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050742", + "https://bugzilla.redhat.com/show_bug.cgi?id=2050743", + "https://bugzilla.redhat.com/show_bug.cgi?id=2055349", + "https://bugzilla.redhat.com/show_bug.cgi?id=2065290", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104367", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107342", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107376", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107390", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107392", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23648", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1962", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21673", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21698", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21702", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21703", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21713", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28131", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30631", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30633", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://errata.almalinux.org/9/ALSA-2022-8057.html", + "https://errata.rockylinux.org/RLSA-2022:8057", + "https://github.com/advisories/GHSA-cg3q-j54f-5p7p", + "https://github.com/prometheus/client_golang/pull/962", + "https://github.com/prometheus/client_golang/pull/987", + "https://github.com/prometheus/client_golang/releases/tag/v1.11.1", + "https://github.com/prometheus/client_golang/security/advisories/GHSA-cg3q-j54f-5p7p", + "https://linux.oracle.com/cve/CVE-2022-21698.html", + "https://linux.oracle.com/errata/ELSA-2022-8057.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2IK53GWZ475OQ6ENABKMJMTOBZG6LXUR/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2PFW6Q2LXXWTFRTMTRN4ZGADFRQPKJ3D/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36GUEPA5TPSC57DZTPYPBL6T7UPQ2FRH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/3L6GDN5S5QZSCFKWD3GKL2RDZQ6B4UWA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4KDETHL5XCT6RZN2BBNOCEXRZ2W3SFU3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5OGNAFVXSMTTT2UPH6CS3IH6L3KM42Q7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/7V7I72LSQ3IET3QJR6QPAVGJZ4CBDLN5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AK7CJBCGERCRXYUR2EWDSSDVAQMTAZGX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FY3N7H6VSDZM37B4SKM2PFFCUWU7QYWN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HLAQRRGNSO5MYCPAXGPH2OCSHOGHSQMQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KBMVIQFKQDSSTHVVJWJ4QH6TW3JVB7XZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/MH6ALXEQXIFQRQFNJ5Y2MJ5DFPIX76VN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RN7JGC2LVHPEGSJYODFUV5FEKPBVG4D7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SASRKYHT5ZFSVMJUQUG3UAEQRJYGJKAR/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZKORFJTRRDJCWBTJPISKKCVMMMJBIRLG/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-21698", + "https://pkg.go.dev/vuln/GO-2022-0322", + "https://www.cve.org/CVERecord?id=CVE-2022-21698" + ], + "PublishedDate": "2022-02-15T16:15:00Z", + "LastModifiedDate": "2022-12-09T16:46:00Z" + }, + { + "VulnerabilityID": "CVE-2021-43565", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20201216223049-8b5274cf687f", + "FixedVersion": "0.0.0-20211202192323-5770296d904e", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-43565", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang.org/x/crypto: empty plaintext packet causes panic", + "Description": "The x/crypto/ssh package before 0.0.0-20211202192323-5770296d904e of golang.org/x/crypto allows an attacker to panic an SSH server.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-43565", + "https://github.com/advisories/GHSA-gwc9-m7rh-j2ww", + "https://go.dev/cl/368814/", + "https://go.dev/issues/49932", + "https://groups.google.com/forum/#!forum/golang-announce", + "https://groups.google.com/g/golang-announce/c/2AR1sKiM-Qs", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43565", + "https://pkg.go.dev/vuln/GO-2022-0968", + "https://www.cve.org/CVERecord?id=CVE-2021-43565" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-09-09T03:38:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27191", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20201216223049-8b5274cf687f", + "FixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27191", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "crash in a golang.org/x/crypto/ssh server", + "Description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191" + ], + "PublishedDate": "2022-03-18T07:15:00Z", + "LastModifiedDate": "2022-10-26T17:52:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33194", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20201021035429-f5854403a974", + "FixedVersion": "0.0.0-20210520170846-37e1c6afe023", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33194", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: x/net/html: infinite loop in ParseFragment", + "Description": "golang.org/x/net before v0.0.0-20210520170846-37e1c6afe023 allows attackers to cause a denial of service (infinite loop) via crafted ParseFragment input.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-835" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-33194", + "https://github.com/advisories/GHSA-83g2-8m93-v3w7", + "https://github.com/golang/net/commit/37e1c6afe02340126705deced573a85ab75209d7", + "https://go.dev/cl/311090", + "https://go.dev/issue/46288", + "https://go.googlesource.com/net/+/37e1c6afe02340126705deced573a85ab75209d7", + "https://groups.google.com/g/golang-announce/c/wPunbCPkWUg", + "https://groups.google.com/g/golang-dev/c/28x0nthP-c8/m/KqWVTjsnBAAJ", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4CHKSFMHZVOBCZSSVRE3UEYNKARTBMTM/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33194", + "https://pkg.go.dev/vuln/GO-2021-0238", + "https://www.cve.org/CVERecord?id=CVE-2021-33194" + ], + "PublishedDate": "2021-05-26T15:15:00Z", + "LastModifiedDate": "2022-06-03T19:29:00Z" + }, + { + "VulnerabilityID": "CVE-2021-44716", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20201021035429-f5854403a974", + "FixedVersion": "0.0.0-20211209124913-491a49abca63", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-44716", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: net/http: limit growth of header canonicalization cache", + "Description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/go/issues/50058", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716" + ], + "PublishedDate": "2022-01-01T05:15:00Z", + "LastModifiedDate": "2023-04-20T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20201021035429-f5854403a974", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20201021035429-f5854403a974", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2021-31525", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20201021035429-f5854403a974", + "FixedVersion": "0.0.0-20210428140749-89ef3d95e781", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-31525", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: net/http: panic in ReadRequest and ReadResponse when reading a very large header", + "Description": "net/http in Go before 1.15.12 and 1.16.x before 1.16.4 allows remote attackers to cause a denial of service (panic) via a large header to ReadRequest or ReadResponse. Server, Transport, and Client can each be affected in some configurations.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "nvd": { + "V2Vector": "AV:N/AC:H/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.6, + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-31525", + "https://github.com/advisories/GHSA-h86h-8ppg-mxmh", + "https://github.com/golang/go/issues/45710", + "https://go.dev/cl/313069", + "https://go.dev/issue/45710", + "https://go.googlesource.com/net/+/89ef3d95e781148a0951956029c92a211477f7f9", + "https://groups.google.com/g/golang-announce/c/cu9SP4eSXMc", + "https://linux.oracle.com/cve/CVE-2021-31525.html", + "https://linux.oracle.com/errata/ELSA-2021-3076.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ISRZZ6NY5R2TBYE72KZFOCO25TEUQTBF/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-31525", + "https://pkg.go.dev/vuln/GO-2022-0236", + "https://security.gentoo.org/glsa/202208-02", + "https://www.cve.org/CVERecord?id=CVE-2021-31525" + ], + "PublishedDate": "2021-05-27T13:15:00Z", + "LastModifiedDate": "2022-11-09T03:32:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20201021035429-f5854403a974", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29526", + "PkgName": "golang.org/x/sys", + "InstalledVersion": "v0.0.0-20200930185726-fdedc70b468f", + "FixedVersion": "0.0.0-20220412211240-33da011f77ad", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29526", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "faccessat checks wrong group", + "Description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526" + ], + "PublishedDate": "2022-06-23T17:15:00Z", + "LastModifiedDate": "2022-08-19T12:50:00Z" + }, + { + "VulnerabilityID": "CVE-2021-38561", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.3", + "FixedVersion": "0.3.7", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-38561", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "Description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561" + ], + "PublishedDate": "2022-12-26T06:15:00Z", + "LastModifiedDate": "2023-01-05T04:52:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.3", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + }, + { + "VulnerabilityID": "CVE-2019-11254", + "PkgName": "gopkg.in/yaml.v2", + "InstalledVersion": "v2.2.4", + "FixedVersion": "2.2.8", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-11254", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "kubernetes: Denial of service in API server via crafted YAML payloads by authorized users", + "Description": "The Kubernetes API Server component in versions 1.1-1.14, and versions prior to 1.15.10, 1.16.7 and 1.17.3 allows an authorized user who sends malicious YAML payloads to cause the kube-apiserver to consume excessive CPU cycles while parsing YAML.", + "Severity": "MEDIUM", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4, + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-11254", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18496", + "https://github.com/advisories/GHSA-wxc4-f4m6-wwqv", + "https://github.com/go-yaml/yaml/commit/53403b58ad1b561927d19068c655246f2db79d48", + "https://github.com/go-yaml/yaml/pull/555", + "https://github.com/kubernetes/kubernetes/issues/89535", + "https://github.com/kubernetes/kubernetes/pull/87467/commits/b86df2bec4f377afc0ca03482ffad2f0a49a83b8", + "https://groups.google.com/d/msg/kubernetes-announce/ALL9s73E5ck/4yHe8J-PBAAJ", + "https://groups.google.com/forum/#!topic/kubernetes-security-announce/wuwEwZigXBc", + "https://linux.oracle.com/cve/CVE-2019-11254.html", + "https://linux.oracle.com/errata/ELSA-2020-5653.html", + "https://nvd.nist.gov/vuln/detail/CVE-2019-11254", + "https://pkg.go.dev/vuln/GO-2020-0036", + "https://security.netapp.com/advisory/ntap-20200413-0003/", + "https://www.cve.org/CVERecord?id=CVE-2019-11254" + ], + "PublishedDate": "2020-04-01T21:15:00Z", + "LastModifiedDate": "2020-10-02T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2020-8565", + "PkgName": "k8s.io/client-go", + "InstalledVersion": "v0.17.1", + "FixedVersion": "0.20.0-alpha.2", + "Layer": { + "Digest": "sha256:5ef9995fee9815cd00b38e0af9a1a8024da41d2f45db5b3d64c6f380901afe2c", + "DiffID": "sha256:d120cbc915541f8f4efeb6253c4c6cbe1bb53f6b5167ac267acc6e2bb5518864" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-8565", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "kubernetes: Incomplete fix for CVE-2019-11250 allows for token leak in logs when logLevel \u003e= 9", + "Description": "In Kubernetes, if the logging level is set to at least 9, authorization and bearer tokens will be written to log files. This can occur both in API server logs and client tool output like kubectl. This affects \u003c= v1.19.3, \u003c= v1.18.10, \u003c= v1.17.13, \u003c v1.20.0-alpha2.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-532" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 4.7 + }, + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-8565", + "https://github.com/advisories/GHSA-8cfg-vx93-jvxw", + "https://github.com/kubernetes/kubernetes/commit/e99df0e5a75eb6e86123b56d53e9b7ca0fd00419", + "https://github.com/kubernetes/kubernetes/issues/95623", + "https://github.com/kubernetes/kubernetes/pull/95316", + "https://groups.google.com/g/kubernetes-announce/c/ScdmyORnPDk", + "https://groups.google.com/g/kubernetes-security-discuss/c/vm-HcrFUOCs/m/36utxAM5CwAJ", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8565", + "https://pkg.go.dev/vuln/GO-2021-0064", + "https://www.cve.org/CVERecord?id=CVE-2020-8565" + ], + "PublishedDate": "2020-12-07T22:15:00Z", + "LastModifiedDate": "2020-12-08T19:51:00Z" + } + ] + } + ] + }, + { + "Namespace": "local-path-storage", + "Kind": "Deployment", + "Name": "local-path-provisioner", + "Results": [ + { + "Target": "Deployment/local-path-provisioner", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 129, + "Failures": 12, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 137, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 137, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 138, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - docker.io/kindest/local-path-helper:v20220512-507ff70b", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 146, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 137, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 137, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 138, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - docker.io/kindest/local-path-helper:v20220512-507ff70b", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 146, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 137, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 137, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 138, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - docker.io/kindest/local-path-helper:v20220512-507ff70b", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 146, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 137, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 137, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 138, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - docker.io/kindest/local-path-helper:v20220512-507ff70b", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 146, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 137, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 137, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 138, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - docker.io/kindest/local-path-helper:v20220512-507ff70b", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 146, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV015", + "AVDID": "AVD-KSV-0015", + "Title": "CPU requests not specified", + "Description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.requests.cpu'", + "Namespace": "builtin.kubernetes.KSV015", + "Query": "data.builtin.kubernetes.KSV015.deny", + "Resolution": "Set 'containers[].resources.requests.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv015", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 137, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 137, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 138, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - docker.io/kindest/local-path-helper:v20220512-507ff70b", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 146, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 137, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 137, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 138, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - docker.io/kindest/local-path-helper:v20220512-507ff70b", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 146, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 137, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 137, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 138, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - docker.io/kindest/local-path-helper:v20220512-507ff70b", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 146, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 137, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 137, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 138, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - docker.io/kindest/local-path-helper:v20220512-507ff70b", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 146, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'local-path-provisioner' of Deployment 'local-path-provisioner' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 137, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 137, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 138, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - docker.io/kindest/local-path-helper:v20220512-507ff70b", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 146, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 137, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 137, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 138, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - docker.io/kindest/local-path-helper:v20220512-507ff70b", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 146, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 137, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 137, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 138, + "Content": " - local-path-provisioner", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - --debug", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - start", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --helper-image", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - docker.io/kindest/local-path-helper:v20220512-507ff70b", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " - --config", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - /etc/config/config.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 146, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "kube-scheduler-kind-control-plane", + "Results": [ + { + "Target": "k8s.gcr.io/kube-scheduler:v1.24.0 (debian 11.3)", + "Class": "os-pkgs", + "Type": "debian" + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "kube-scheduler-kind-control-plane", + "Results": [ + { + "Target": "Pod/kube-scheduler-kind-control-plane", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 128, + "Failures": 13, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KCV0040", + "AVDID": "AVD-KCV-0040", + "Title": "Ensure that the --profiling argument is set to false", + "Description": "Disable profiling, if not needed.", + "Message": "Ensure that the --profiling argument is set to false", + "Namespace": "builtin.kubernetes.KCV0040", + "Query": "data.builtin.kubernetes.KCV0040.deny", + "Resolution": "Edit the Scheduler pod specification file /etc/kubernetes/manifests/kube-scheduler.yaml file on the Control Plane node and set the below parameter.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0040", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0040" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 162, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 162, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 163, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.24.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 171, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 162, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 162, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 163, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.24.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 171, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 162, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 162, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 163, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.24.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 171, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV009", + "AVDID": "AVD-KSV-0009", + "Title": "Access to host network", + "Description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "Message": "Pod 'kube-scheduler-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true", + "Namespace": "builtin.kubernetes.KSV009", + "Query": "data.builtin.kubernetes.KSV009.deny", + "Resolution": "Do not set 'spec.template.spec.hostNetwork' to true.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv009", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 161, + "EndLine": 223, + "Code": { + "Lines": [ + { + "Number": 161, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 162, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.24.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 170, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 162, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 162, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 163, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.24.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 171, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 162, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 162, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 163, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.24.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 171, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 162, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 162, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 163, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.24.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 171, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 162, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 162, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 163, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.24.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 171, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 162, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 162, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 163, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.24.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 171, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 162, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 162, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 163, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.24.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 171, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-scheduler' of Pod 'kube-scheduler-kind-control-plane' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 162, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 162, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 163, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.24.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 171, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV023", + "AVDID": "AVD-KSV-0023", + "Title": "hostPath volumes mounted", + "Description": "HostPath volumes must be forbidden.", + "Message": "Pod 'kube-scheduler-kind-control-plane' should not set 'spec.template.volumes.hostPath'", + "Namespace": "builtin.kubernetes.KSV023", + "Query": "data.builtin.kubernetes.KSV023.deny", + "Resolution": "Do not set 'spec.volumes[*].hostPath'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv023", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 161, + "EndLine": 223, + "Code": { + "Lines": [ + { + "Number": 161, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 162, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.24.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 170, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 162, + "EndLine": 202, + "Code": { + "Lines": [ + { + "Number": 162, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 163, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - --kubeconfig=/etc/kubernetes/scheduler.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --leader-elect=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " image: k8s.gcr.io/kube-scheduler:v1.24.0", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " imagePullPolicy: IfNotPresent", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 171, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "kube-apiserver-kind-control-plane", + "Results": [ + { + "Target": "k8s.gcr.io/kube-apiserver:v1.24.0 (debian 11.3)", + "Class": "os-pkgs", + "Type": "debian" + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "kube-apiserver-kind-control-plane", + "Results": [ + { + "Target": "Pod/kube-apiserver-kind-control-plane", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 119, + "Failures": 22, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KCV0001", + "AVDID": "AVD-KCV-0001", + "Title": "Ensure that the --anonymous-auth argument is set to false", + "Description": "Disable anonymous requests to the API server.", + "Message": "Ensure that the --anonymous-auth argument is set to false", + "Namespace": "builtin.kubernetes.KCV0001", + "Query": "data.builtin.kubernetes.KCV0001.deny", + "Resolution": "Set '--anonymous-auth' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0001", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0006", + "AVDID": "AVD-KCV-0006", + "Title": "Ensure that the --kubelet-certificate-authority argument is set as appropriate", + "Description": "Verify kubelet's certificate before establishing connection.", + "Message": "Ensure that the --kubelet-certificate-authority argument is set as appropriate", + "Namespace": "builtin.kubernetes.KCV0006", + "Query": "data.builtin.kubernetes.KCV0006.deny", + "Resolution": "Follow the Kubernetes documentation and setup the TLS connection between the apiserver and kubelets. ", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0006", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0006" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0010", + "AVDID": "AVD-KCV-0010", + "Title": "Ensure that the admission control plugin EventRateLimit is set", + "Description": "Limit the rate at which the API server accepts requests.", + "Message": "Ensure that the admission control plugin EventRateLimit is set", + "Namespace": "builtin.kubernetes.KCV0010", + "Query": "data.builtin.kubernetes.KCV0010.deny", + "Resolution": "Follow the Kubernetes documentation and set the desired limits in a configuration file. Then, edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml and set the below parameters.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0010", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0010" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV0012", + "AVDID": "AVD-KCV-0012", + "Title": "Ensure that the admission control plugin AlwaysPullImages is set", + "Description": "Always pull images.", + "Message": "Ensure that the admission control plugin AlwaysPullImages is set", + "Namespace": "builtin.kubernetes.KCV0012", + "Query": "data.builtin.kubernetes.KCV0012.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --enable-admission-plugins parameter to include AlwaysPullImages.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv0012", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/ksv0012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0013", + "AVDID": "AVD-KCV-0013", + "Title": "Ensure that the admission control plugin SecurityContextDeny is set if PodSecurityPolicy is not used", + "Description": "The SecurityContextDeny admission controller can be used to deny pods which make use of some SecurityContext fields which could allow for privilege escalation in the cluster. This should be used where PodSecurityPolicy is not in place within the cluster.", + "Message": "Ensure that the admission control plugin SecurityContextDeny is set if PodSecurityPolicy is not used", + "Namespace": "builtin.kubernetes.KCV0013", + "Query": "data.builtin.kubernetes.KCV0013.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --enable-admission-plugins parameter to include SecurityContextDeny, unless PodSecurityPolicy is already in place.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0013", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0013" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0018", + "AVDID": "AVD-KCV-0018", + "Title": "Ensure that the --profiling argument is set to false", + "Description": "Disable profiling, if not needed.", + "Message": "Ensure that the --profiling argument is set to false", + "Namespace": "builtin.kubernetes.KCV0018", + "Query": "data.builtin.kubernetes.KCV0018.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the below parameter.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0018", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0019", + "AVDID": "AVD-KCV-0019", + "Title": "Ensure that the --audit-log-path argument is set", + "Description": "Enable auditing on the Kubernetes API Server and set the desired audit log path.", + "Message": "Ensure that the --audit-log-path argument is set", + "Namespace": "builtin.kubernetes.KCV0019", + "Query": "data.builtin.kubernetes.KCV0019.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-path parameter.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0019", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0019" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0020", + "AVDID": "AVD-KCV-0020", + "Title": "Ensure that the --audit-log-maxage argument is set to 30 or as appropriate", + "Description": "Retain the logs for at least 30 days or as appropriate.", + "Message": "Ensure that the --audit-log-maxage argument is set to 30 or as appropriate", + "Namespace": "builtin.kubernetes.KCV0020", + "Query": "data.builtin.kubernetes.KCV0020.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-maxage parameter to 30 or as an appropriate number of days.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0020", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0021", + "AVDID": "AVD-KCV-0021", + "Title": "Ensure that the --audit-log-maxbackup argument is set to 10 or as appropriate", + "Description": "Retain 10 or an appropriate number of old log files.", + "Message": "Ensure that the --audit-log-maxbackup argument is set to 10 or as appropriate", + "Namespace": "builtin.kubernetes.KCV0021", + "Query": "data.builtin.kubernetes.KCV0021.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-maxbackup parameter to 10 or to an appropriate value.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0021", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0022", + "AVDID": "AVD-KCV-0022", + "Title": "Ensure that the --audit-log-maxsize argument is set to 100 or as appropriate", + "Description": "Rotate log files on reaching 100 MB or as appropriate.", + "Message": "Ensure that the --audit-log-maxsize argument is set to 100 or as appropriate", + "Namespace": "builtin.kubernetes.KCV0022", + "Query": "data.builtin.kubernetes.KCV0022.deny", + "Resolution": "Edit the API server pod specification file /etc/kubernetes/manifests/kube-apiserver.yaml on the Control Plane node and set the --audit-log-maxsize parameter to an appropriate size in MB", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0022", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0022" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV009", + "AVDID": "AVD-KSV-0009", + "Title": "Access to host network", + "Description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "Message": "Pod 'kube-apiserver-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true", + "Namespace": "builtin.kubernetes.KSV009", + "Query": "data.builtin.kubernetes.KSV009.deny", + "Resolution": "Do not set 'spec.template.spec.hostNetwork' to true.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv009", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 223, + "EndLine": 346, + "Code": { + "Lines": [ + { + "Number": 223, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 232, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-apiserver' of Pod 'kube-apiserver-kind-control-plane' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV023", + "AVDID": "AVD-KSV-0023", + "Title": "hostPath volumes mounted", + "Description": "HostPath volumes must be forbidden.", + "Message": "Pod 'kube-apiserver-kind-control-plane' should not set 'spec.template.volumes.hostPath'", + "Namespace": "builtin.kubernetes.KSV023", + "Query": "data.builtin.kubernetes.KSV023.deny", + "Resolution": "Do not set 'spec.volumes[*].hostPath'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv023", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 223, + "EndLine": 346, + "Code": { + "Lines": [ + { + "Number": 223, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 232, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 224, + "EndLine": 309, + "Code": { + "Lines": [ + { + "Number": 224, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 225, + "Content": " - kube-apiserver", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 226, + "Content": " - --advertise-address=172.18.0.2", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 227, + "Content": " - --allow-privileged=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 228, + "Content": " - --authorization-mode=Node,RBAC", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 229, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 230, + "Content": " - --enable-admission-plugins=NodeRestriction", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 231, + "Content": " - --enable-bootstrap-token-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 232, + "Content": " - --etcd-cafile=/etc/kubernetes/pki/etcd/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 233, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "kube-controller-manager-kind-control-plane", + "Results": [ + { + "Target": "k8s.gcr.io/kube-controller-manager:v1.24.0 (debian 11.3)", + "Class": "os-pkgs", + "Type": "debian" + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "kube-controller-manager-kind-control-plane", + "Results": [ + { + "Target": "Pod/kube-controller-manager-kind-control-plane", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 126, + "Failures": 15, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KCV0033", + "AVDID": "AVD-KCV-0033", + "Title": "Ensure that the --terminated-pod-gc-threshold argument is set as appropriate", + "Description": "Activate garbage collector on pod termination, as appropriate.", + "Message": "Ensure that the --terminated-pod-gc-threshold argument is set as appropriate", + "Namespace": "builtin.kubernetes.KCV0033", + "Query": "data.builtin.kubernetes.KCV0033.deny", + "Resolution": "Edit the Controller Manager pod specification file /etc/kubernetes/manifests/kube-controller-manager.yaml on the Control Plane node and set the --terminated-pod-gc-threshold to an appropriate threshold.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0033", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0033" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 233, + "EndLine": 303, + "Code": { + "Lines": [ + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 241, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 242, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0034", + "AVDID": "AVD-KCV-0034", + "Title": "Ensure that the --profiling argument is set to false", + "Description": "Disable profiling, if not needed.", + "Message": "Ensure that the --profiling argument is set to false", + "Namespace": "builtin.kubernetes.KCV0034", + "Query": "data.builtin.kubernetes.KCV0034.deny", + "Resolution": "Edit the Controller Manager pod specification file /etc/kubernetes/manifests/kube-controller-manager.yaml on the Control Plane node and set the below parameter.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0034", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0034" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 233, + "EndLine": 303, + "Code": { + "Lines": [ + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 241, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 242, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0038", + "AVDID": "AVD-KCV-0038", + "Title": "Ensure that the RotateKubeletServerCertificate argument is set to true", + "Description": "Enable kubelet server certificate rotation on controller-manager.", + "Message": "Ensure that the RotateKubeletServerCertificate argument is set to true", + "Namespace": "builtin.kubernetes.KCV0038", + "Query": "data.builtin.kubernetes.KCV0038.deny", + "Resolution": "Edit the Controller Manager pod specification file /etc/kubernetes/manifests/kube-controller-manager.yaml on the Control Plane node and set the --feature-gates parameter to include RotateKubeletServerCertificate=true .", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0038", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0038" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 233, + "EndLine": 303, + "Code": { + "Lines": [ + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 241, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 242, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 233, + "EndLine": 303, + "Code": { + "Lines": [ + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 241, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 242, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 233, + "EndLine": 303, + "Code": { + "Lines": [ + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 241, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 242, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV009", + "AVDID": "AVD-KSV-0009", + "Title": "Access to host network", + "Description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "Message": "Pod 'kube-controller-manager-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true", + "Namespace": "builtin.kubernetes.KSV009", + "Query": "data.builtin.kubernetes.KSV009.deny", + "Resolution": "Do not set 'spec.template.spec.hostNetwork' to true.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv009", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 232, + "EndLine": 348, + "Code": { + "Lines": [ + { + "Number": 232, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 241, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 233, + "EndLine": 303, + "Code": { + "Lines": [ + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 241, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 242, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 233, + "EndLine": 303, + "Code": { + "Lines": [ + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 241, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 242, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 233, + "EndLine": 303, + "Code": { + "Lines": [ + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 241, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 242, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 233, + "EndLine": 303, + "Code": { + "Lines": [ + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 241, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 242, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 233, + "EndLine": 303, + "Code": { + "Lines": [ + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 241, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 242, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 233, + "EndLine": 303, + "Code": { + "Lines": [ + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 241, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 242, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-controller-manager' of Pod 'kube-controller-manager-kind-control-plane' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 233, + "EndLine": 303, + "Code": { + "Lines": [ + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 241, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 242, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV023", + "AVDID": "AVD-KSV-0023", + "Title": "hostPath volumes mounted", + "Description": "HostPath volumes must be forbidden.", + "Message": "Pod 'kube-controller-manager-kind-control-plane' should not set 'spec.template.volumes.hostPath'", + "Namespace": "builtin.kubernetes.KSV023", + "Query": "data.builtin.kubernetes.KSV023.deny", + "Resolution": "Do not set 'spec.volumes[*].hostPath'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv023", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 232, + "EndLine": 348, + "Code": { + "Lines": [ + { + "Number": 232, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 241, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 233, + "EndLine": 303, + "Code": { + "Lines": [ + { + "Number": 233, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 234, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 235, + "Content": " - --allocate-node-cidrs=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 236, + "Content": " - --authentication-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 237, + "Content": " - --authorization-kubeconfig=/etc/kubernetes/controller-manager.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 238, + "Content": " - --bind-address=127.0.0.1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 239, + "Content": " - --client-ca-file=/etc/kubernetes/pki/ca.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 240, + "Content": " - --cluster-cidr=10.244.0.0/16", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 241, + "Content": " - --cluster-name=kind", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 242, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "Deployment", + "Name": "securecodebox-operator-minio", + "Results": [ + { + "Target": "docker.io/bitnami/minio:2022.9.1-debian-11-r0 (debian 11.4)", + "Class": "os-pkgs", + "Type": "debian", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2011-3374", + "PkgID": "apt@2.2.4", + "PkgName": "apt", + "InstalledVersion": "2.2.4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "PublishedDate": "2019-11-26T00:15:00Z", + "LastModifiedDate": "2021-02-09T16:08:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3715", + "PkgID": "bash@5.1-2+deb11u1", + "PkgName": "bash", + "InstalledVersion": "5.1-2+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3715", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "a heap-buffer-overflow in valid_parameter_transform", + "Description": "A flaw was found in the bash package, where a heap-buffer overflow can occur in valid parameter_transform. This issue may lead to memory problems.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 6.6 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0340", + "https://access.redhat.com/security/cve/CVE-2022-3715", + "https://bugzilla.redhat.com/2126720", + "https://bugzilla.redhat.com/show_bug.cgi?id=2126720", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3715", + "https://errata.almalinux.org/9/ALSA-2023-0340.html", + "https://errata.rockylinux.org/RLSA-2023:0340", + "https://linux.oracle.com/cve/CVE-2022-3715.html", + "https://linux.oracle.com/errata/ELSA-2023-0340.html", + "https://lists.gnu.org/archive/html/bug-bash/2022-08/msg00147.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3715", + "https://www.cve.org/CVERecord?id=CVE-2022-3715" + ], + "PublishedDate": "2023-01-05T15:15:00Z", + "LastModifiedDate": "2023-02-24T18:38:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "bsdutils@1:2.36.1-8+deb11u1", + "PkgName": "bsdutils", + "InstalledVersion": "1:2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2016-2781", + "PkgID": "coreutils@8.32-4+b1", + "PkgName": "coreutils", + "InstalledVersion": "8.32-4+b1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-2781", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "coreutils: Non-privileged session can escape to the parent session in chroot", + "Description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "Severity": "LOW", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:N", + "V2Score": 2.1, + "V3Score": 6.5 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H", + "V2Score": 6.2, + "V3Score": 8.6 + } + }, + "References": [ + "http://seclists.org/oss-sec/2016/q1/452", + "http://www.openwall.com/lists/oss-security/2016/02/28/2", + "http://www.openwall.com/lists/oss-security/2016/02/28/3", + "https://access.redhat.com/security/cve/CVE-2016-2781", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lore.kernel.org/patchwork/patch/793178/", + "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + "https://www.cve.org/CVERecord?id=CVE-2016-2781" + ], + "PublishedDate": "2017-02-07T15:59:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-18018", + "PkgID": "coreutils@8.32-4+b1", + "PkgName": "coreutils", + "InstalledVersion": "8.32-4+b1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-18018", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "coreutils: race condition vulnerability in chown and chgrp", + "Description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX \"-R -L\" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "Severity": "LOW", + "CweIDs": [ + "CWE-362" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 1.9, + "V3Score": 4.7 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:R/S:U/C:L/I:L/A:L", + "V3Score": 4.2 + } + }, + "References": [ + "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + "https://access.redhat.com/security/cve/CVE-2017-18018", + "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + "https://www.cve.org/CVERecord?id=CVE-2017-18018" + ], + "PublishedDate": "2018-01-04T04:29:00Z", + "LastModifiedDate": "2018-01-19T15:46:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32221", + "VendorIDs": [ + "DSA-5330-1" + ], + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32221", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "POST following PUT confusion", + "Description": "When doing HTTP(S) transfers, libcurl might erroneously use the read callback (`CURLOPT_READFUNCTION`) to ask for data to send, even when the `CURLOPT_POSTFIELDS` option has been set, if the same handle previously was used to issue a `PUT` request which used that callback. This flaw may surprise the application and cause it to misbehave and either send off the wrong data or use memory after free or similar in the subsequent `POST` request. The problem exists in the logic for a reused handle when it is changed from a PUT to a POST.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-668" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 4.8 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Jan/19", + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://www.openwall.com/lists/oss-security/2023/05/17/4", + "https://access.redhat.com/errata/RHSA-2023:0333", + "https://access.redhat.com/security/cve/CVE-2022-32221", + "https://bugzilla.redhat.com/2135411", + "https://bugzilla.redhat.com/show_bug.cgi?id=2135411", + "https://curl.se/docs/CVE-2022-32221.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32221", + "https://errata.almalinux.org/9/ALSA-2023-0333.html", + "https://errata.rockylinux.org/RLSA-2023:0333", + "https://hackerone.com/reports/1704017", + "https://linux.oracle.com/cve/CVE-2022-32221.html", + "https://linux.oracle.com/errata/ELSA-2023-0333.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32221", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20230110-0006/", + "https://security.netapp.com/advisory/ntap-20230208-0002/", + "https://support.apple.com/kb/HT213604", + "https://support.apple.com/kb/HT213605", + "https://ubuntu.com/security/notices/USN-5702-1", + "https://ubuntu.com/security/notices/USN-5702-2", + "https://ubuntu.com/security/notices/USN-5823-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32221", + "https://www.debian.org/security/2023/dsa-5330" + ], + "PublishedDate": "2022-12-05T22:15:00Z", + "LastModifiedDate": "2023-05-17T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-23914", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23914", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS ignored on multiple requests", + "Description": "A cleartext transmission of sensitive information vulnerability exists in curl \u003cv7.88.0 that could cause HSTS functionality fail when multiple URLs are requested serially. Using its HSTS support, curl can be instructed to use HTTPS instead of usingan insecure clear-text HTTP step even when HTTP is provided in the URL. ThisHSTS mechanism would however surprisingly be ignored by subsequent transferswhen done on the same command line because the state would not be properlycarried on.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-23914", + "https://curl.se/docs/CVE-2023-23914.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23914", + "https://hackerone.com/reports/1813864", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23914", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23914" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-03-09T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28322", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28322", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "more POST-after-PUT confusion", + "Description": "An information disclosure vulnerability exists in curl \u003cv8.1.0 when doing HTTP(S) transfers, libcurl might erroneously use the read callback (`CURLOPT_READFUNCTION`) to ask for data to send, even when the `CURLOPT_POSTFIELDS` option has been set, if the same handle previously wasused to issue a `PUT` request which used that callback. This flaw may surprise the application and cause it to misbehave and either send off the wrong data or use memory after free or similar in the second transfer. The problem exists in the logic for a reused handle when it is (expected to be) changed from a PUT to a POST.", + "Severity": "CRITICAL", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:L", + "V3Score": 4.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28322", + "https://curl.se/docs/CVE-2023-28322.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28322", + "https://hackerone.com/reports/1954658", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F4I75RDGX5ULSSCBE5BF3P5I5SFO7ULQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z2LIWHWKOVH24COGGBCVOWDXXIUPKOMK/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28322", + "https://security.netapp.com/advisory/ntap-20230609-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-28322" + ], + "PublishedDate": "2023-05-26T21:15:00Z", + "LastModifiedDate": "2023-06-09T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42916", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42916", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS bypass via IDN", + "Description": "In curl before 7.86.0, the HSTS check could be bypassed to trick it into staying with HTTP. Using its HSTS support, curl can be instructed to use HTTPS directly (instead of using an insecure cleartext HTTP step) even when HTTP is provided in the URL. This mechanism could be bypassed if the host name in the given URL uses IDN characters that get replaced with ASCII counterparts as part of the IDN conversion, e.g., using the character UTF-8 U+3002 (IDEOGRAPHIC FULL STOP) instead of the common ASCII full stop of U+002E (.). The earliest affected version is 7.77.0 2021-05-26.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Jan/19", + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://www.openwall.com/lists/oss-security/2022/12/21/1", + "https://access.redhat.com/security/cve/CVE-2022-42916", + "https://curl.se/docs/CVE-2022-42916.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42916", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/37YEVVC6NAF6H7UHH6YAUY5QEVY6LIH2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HVU3IMZCKR4VE6KJ4GCWRL2ILLC6OV76/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q27V5YYMXUVI6PRZQVECON32XPVWTKDK/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42916", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20221209-0010/", + "https://support.apple.com/kb/HT213604", + "https://support.apple.com/kb/HT213605", + "https://ubuntu.com/security/notices/USN-5702-1", + "https://www.cve.org/CVERecord?id=CVE-2022-42916" + ], + "PublishedDate": "2022-10-29T02:15:00Z", + "LastModifiedDate": "2023-03-28T14:13:00Z" + }, + { + "VulnerabilityID": "CVE-2022-43551", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-43551", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS bypass via IDN", + "Description": "A vulnerability exists in curl \u003c7.87.0 HSTS check that could be bypassed to trick it to keep using HTTP. Using its HSTS support, curl can be instructed to use HTTPS instead of using an insecure clear-text HTTP step even when HTTP is provided in the URL. However, the HSTS mechanism could be bypassed if the host name in the given URL first uses IDN characters that get replaced to ASCII counterparts as part of the IDN conversion. Like using the character UTF-8 U+3002 (IDEOGRAPHIC FULL STOP) instead of the common ASCII full stop (U+002E) `.`. Then in a subsequent request, it does not detect the HSTS state and makes a clear text transfer. Because it would store the info IDN encoded but look for it IDN decoded.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-43551", + "https://curl.se/docs/CVE-2022-43551.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43551", + "https://hackerone.com/reports/1755083", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/TVWZW5CNSJ7UYAF2BGSYAWAEXDJYUBHA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-43551", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://ubuntu.com/security/notices/USN-5788-1", + "https://www.cve.org/CVERecord?id=CVE-2022-43551" + ], + "PublishedDate": "2022-12-23T15:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27533", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27533", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TELNET option IAC injection", + "Description": "A vulnerability in input validation exists in curl \u003c8.0 during communication using the TELNET protocol may allow an attacker to pass on maliciously crafted user name and \"telnet options\" during server negotiation. The lack of proper input scrubbing allows an attacker to send content or perform option negotiation without the application's intent. This vulnerability could be exploited if an application allows user input, thereby enabling attackers to execute arbitrary code on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:L/A:N", + "V3Score": 3.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27533", + "https://curl.se/docs/CVE-2023-27533.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27533", + "https://hackerone.com/reports/1891474", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27533", + "https://security.netapp.com/advisory/ntap-20230420-0011/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://ubuntu.com/security/notices/USN-5964-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27533" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-21T23:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27534", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27534", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "SFTP path ~ resolving discrepancy", + "Description": "A path traversal vulnerability exists in curl \u003c8.0.0 SFTP implementation causes the tilde (~) character to be wrongly replaced when used as a prefix in the first path element, in addition to its intended use as the first element to indicate a path relative to the user's home directory. Attackers can exploit this flaw to bypass filtering or execute arbitrary code by crafting a path like /~2/foo while accessing a server with a specific user.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-22" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27534", + "https://curl.se/docs/CVE-2023-27534.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27534", + "https://hackerone.com/reports/1892351", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27534", + "https://security.netapp.com/advisory/ntap-20230420-0012/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://www.cve.org/CVERecord?id=CVE-2023-27534" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-20T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27535", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27535", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "FTP too eager connection reuse", + "Description": "An authentication bypass vulnerability exists in libcurl \u003c8.0.0 in the FTP connection reuse feature that can result in wrong credentials being used during subsequent transfers. Previously created connections are kept in a connection pool for reuse if they match the current setup. However, certain FTP settings such as CURLOPT_FTP_ACCOUNT, CURLOPT_FTP_ALTERNATIVE_TO_USER, CURLOPT_FTP_SSL_CCC, and CURLOPT_USE_SSL were not included in the configuration match checks, causing them to match too easily. This could lead to libcurl using the wrong credentials when performing a transfer, potentially allowing unauthorized access to sensitive information.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-287" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2650", + "https://access.redhat.com/security/cve/CVE-2023-27535", + "https://bugzilla.redhat.com/2179073", + "https://bugzilla.redhat.com/show_bug.cgi?id=2179073", + "https://bugzilla.redhat.com/show_bug.cgi?id=2188029", + "https://curl.se/docs/CVE-2023-27535.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27535", + "https://errata.almalinux.org/9/ALSA-2023-2650.html", + "https://errata.rockylinux.org/RLSA-2023:3106", + "https://hackerone.com/reports/1892780", + "https://linux.oracle.com/cve/CVE-2023-27535.html", + "https://linux.oracle.com/errata/ELSA-2023-3106.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27535", + "https://security.netapp.com/advisory/ntap-20230420-0010/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://ubuntu.com/security/notices/USN-5964-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27535" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-21T23:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28321", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28321", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "IDN wildcard match may lead to Improper Cerificate Validation", + "Description": "An improper certificate validation vulnerability exists in curl \u003cv8.1.0 in the way it supports matching of wildcard patterns when listed as \"Subject Alternative Name\" in TLS server certificates. curl can be built to use its own name matching function for TLS rather than one provided by a TLS library. This private wildcard matching function would match IDN (International Domain Name) hosts incorrectly and could as a result accept patterns that otherwise should mismatch. IDN hostnames are converted to puny code before used for certificate checks. Puny coded names always start with `xn--` and should not be allowed to pattern match, but the wildcard check in curl could still check for `x*`, which would match even though the IDN name most likely contained nothing even resembling an `x`.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 5.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28321", + "https://curl.se/docs/CVE-2023-28321.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28321", + "https://hackerone.com/reports/1950627", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F4I75RDGX5ULSSCBE5BF3P5I5SFO7ULQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z2LIWHWKOVH24COGGBCVOWDXXIUPKOMK/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28321", + "https://security.netapp.com/advisory/ntap-20230609-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-28321" + ], + "PublishedDate": "2023-05-26T21:15:00Z", + "LastModifiedDate": "2023-06-09T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-43552", + "VendorIDs": [ + "DSA-5330-1" + ], + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-43552", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Use-after-free triggered by an HTTP proxy deny response", + "Description": "A use after free vulnerability exists in curl \u003c7.87.0. Curl can be asked to *tunnel* virtually all protocols it supports through an HTTP proxy. HTTP proxies can (and often do) deny such tunnel operations. When getting denied to tunnel the specific protocols SMB or TELNET, curl would use a heap-allocated struct after it had been freed, in its transfer shutdown code path.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Mar/17", + "https://access.redhat.com/errata/RHSA-2023:2478", + "https://access.redhat.com/security/cve/CVE-2022-43552", + "https://bugzilla.redhat.com/2120718", + "https://bugzilla.redhat.com/2152652", + "https://curl.se/docs/CVE-2022-43552.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43552", + "https://errata.almalinux.org/9/ALSA-2023-2478.html", + "https://hackerone.com/reports/1764858", + "https://linux.oracle.com/cve/CVE-2022-43552.html", + "https://linux.oracle.com/errata/ELSA-2023-2963.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-43552", + "https://security.netapp.com/advisory/ntap-20230214-0002/", + "https://support.apple.com/kb/HT213670", + "https://ubuntu.com/security/notices/USN-5788-1", + "https://ubuntu.com/security/notices/USN-5894-1", + "https://www.cve.org/CVERecord?id=CVE-2022-43552" + ], + "PublishedDate": "2023-02-09T20:15:00Z", + "LastModifiedDate": "2023-03-28T05:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-23915", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23915", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS amnesia with --parallel", + "Description": "A cleartext transmission of sensitive information vulnerability exists in curl \u003cv7.88.0 that could cause HSTS functionality to behave incorrectly when multiple URLs are requested in parallel. Using its HSTS support, curl can be instructed to use HTTPS instead of using an insecure clear-text HTTP step even when HTTP is provided in the URL. This HSTS mechanism would however surprisingly fail when multiple transfers are done in parallel as the HSTS cache file gets overwritten by the most recentlycompleted transfer. A later HTTP-only transfer to the earlier host name would then *not* get upgraded properly to HSTS.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N", + "V3Score": 4.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-23915", + "https://curl.se/docs/CVE-2023-23915.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23915", + "https://hackerone.com/reports/1826048", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23915", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23915" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-03-09T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-23916", + "VendorIDs": [ + "DSA-5365-1" + ], + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u7", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23916", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTP multi-header compression denial of service", + "Description": "An allocation of resources without limits or throttling vulnerability exists in curl \u003cv7.88.0 based on the \"chained\" HTTP compression algorithms, meaning that a server response can be compressed multiple times and potentially with differentalgorithms. The number of acceptable \"links\" in this \"decompression chain\" wascapped, but the cap was implemented on a per-header basis allowing a maliciousserver to insert a virtually unlimited number of compression steps simply byusing many headers. The use of such a decompression chain could result in a \"malloc bomb\", making curl end up spending enormous amounts of allocated heap memory, or trying to and returning out of memory errors.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:1701", + "https://access.redhat.com/security/cve/CVE-2023-23916", + "https://bugzilla.redhat.com/2167815", + "https://bugzilla.redhat.com/show_bug.cgi?id=2167815", + "https://curl.se/docs/CVE-2023-23916.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23916", + "https://errata.almalinux.org/9/ALSA-2023-1701.html", + "https://errata.rockylinux.org/RLSA-2023:1140", + "https://hackerone.com/reports/1826048", + "https://linux.oracle.com/cve/CVE-2023-23916.html", + "https://linux.oracle.com/errata/ELSA-2023-1701.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00035.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BQKE6TXYDHOTFHLTBZ5X73GTKI7II5KO/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23916", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23916", + "https://www.debian.org/security/2023/dsa-5365" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-04-18T16:49:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27536", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27536", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "GSS delegation too eager connection re-use", + "Description": "An authentication bypass vulnerability exists libcurl \u003c8.0.0 in the connection reuse feature which can reuse previously established connections with incorrect user permissions due to a failure to check for changes in the CURLOPT_GSSAPI_DELEGATION option. This vulnerability affects krb5/kerberos/negotiate/GSSAPI transfers and could potentially result in unauthorized access to sensitive information. The safest option is to not reuse connections if the CURLOPT_GSSAPI_DELEGATION option has been changed.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-287" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27536", + "https://curl.se/docs/CVE-2023-27536.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27536", + "https://hackerone.com/reports/1895135", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27536", + "https://security.netapp.com/advisory/ntap-20230420-0010/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://ubuntu.com/security/notices/USN-5964-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27536" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-06-06T20:34:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27538", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27538", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "SSH connection too eager reuse still", + "Description": "An authentication bypass vulnerability exists in libcurl prior to v8.0.0 where it reuses a previously established SSH connection despite the fact that an SSH option was modified, which should have prevented reuse. libcurl maintains a pool of previously used connections to reuse them for subsequent transfers if the configurations match. However, two SSH settings were omitted from the configuration check, allowing them to match easily, potentially leading to the reuse of an inappropriate connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-287" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27538", + "https://curl.se/docs/CVE-2023-27538.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27538", + "https://hackerone.com/reports/1898475", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27538", + "https://security.netapp.com/advisory/ntap-20230420-0010/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://www.cve.org/CVERecord?id=CVE-2023-27538" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-21T23:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-22922", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-22922", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "curl: Content not matching hash in Metalink is not being discarded", + "Description": "When curl is instructed to download content using the metalink feature, thecontents is verified against a hash provided in the metalink XML file.The metalink XML file points out to the client how to get the same contentfrom a set of different URLs, potentially hosted by different servers and theclient can then download the file from one or several of them. In a serial orparallel manner.If one of the servers hosting the contents has been breached and the contentsof the specific file on that server is replaced with a modified payload, curlshould detect this when the hash of the file mismatches after a completeddownload. It should remove the contents and instead try getting the contentsfrom another URL. This is not done, and instead such a hash mismatch is onlymentioned in text and the potentially malicious content is kept in the file ondisk.", + "Severity": "LOW", + "CweIDs": [ + "CWE-755" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 4.3, + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-22922", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://curl.se/docs/CVE-2021-22922.html", + "https://hackerone.com/reports/1213175", + "https://linux.oracle.com/cve/CVE-2021-22922.html", + "https://linux.oracle.com/errata/ELSA-2021-3582.html", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cusers.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cusers.kafka.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRUCW2UVNYUDZF72DQLFQR4PJEC6CF7V/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-22922", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20210902-0003/", + "https://www.cve.org/CVERecord?id=CVE-2021-22922", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-08-05T21:15:00Z", + "LastModifiedDate": "2023-01-05T18:16:00Z" + }, + { + "VulnerabilityID": "CVE-2021-22923", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-22923", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "curl: Metalink download sends credentials", + "Description": "When curl is instructed to get content using the metalink feature, and a user name and password are used to download the metalink XML file, those same credentials are then subsequently passed on to each of the servers from which curl will download or try to download the contents from. Often contrary to the user's expectations and intentions and without telling the user it happened.", + "Severity": "LOW", + "CweIDs": [ + "CWE-522" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:H/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:N/A:N", + "V2Score": 2.6, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:N/A:N", + "V3Score": 5.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-22923", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://curl.se/docs/CVE-2021-22923.html", + "https://hackerone.com/reports/1213181", + "https://linux.oracle.com/cve/CVE-2021-22923.html", + "https://linux.oracle.com/errata/ELSA-2021-3582.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRUCW2UVNYUDZF72DQLFQR4PJEC6CF7V/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-22923", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20210902-0003/", + "https://www.cve.org/CVERecord?id=CVE-2021-22923", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-08-05T21:15:00Z", + "LastModifiedDate": "2023-01-05T18:17:00Z" + }, + { + "VulnerabilityID": "CVE-2022-35252", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u3", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-35252", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Incorrect handling of control code characters in cookies", + "Description": "When curl is used to retrieve and parse cookies from a HTTP(S) server, itaccepts cookies using control codes that when later are sent back to a HTTPserver might make the server return 400 responses. Effectively allowing a\"sister site\" to deny service to all siblings.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.1 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://seclists.org/fulldisclosure/2023/Jan/21", + "https://access.redhat.com/errata/RHSA-2023:2478", + "https://access.redhat.com/security/cve/CVE-2022-35252", + "https://bugzilla.redhat.com/2120718", + "https://bugzilla.redhat.com/2152652", + "https://curl.se/docs/CVE-2022-35252.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35252", + "https://errata.almalinux.org/9/ALSA-2023-2478.html", + "https://hackerone.com/reports/1613943", + "https://linux.oracle.com/cve/CVE-2022-35252.html", + "https://linux.oracle.com/errata/ELSA-2023-2963.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-35252", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20220930-0005/", + "https://support.apple.com/kb/HT213603", + "https://support.apple.com/kb/HT213604", + "https://ubuntu.com/security/notices/USN-5587-1", + "https://www.cve.org/CVERecord?id=CVE-2022-35252", + "https://www.openwall.com/lists/oss-security/2022/08/31/2" + ], + "PublishedDate": "2022-09-23T14:15:00Z", + "LastModifiedDate": "2023-03-01T18:09:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28320", + "PkgID": "curl@7.74.0-1.3+deb11u2", + "PkgName": "curl", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28320", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "siglongjmp race condition may lead to crash", + "Description": "A denial of service vulnerability exists in curl \u003cv8.1.0 in the way libcurl provides several different backends for resolving host names, selected at build time. If it is built to use the synchronous resolver, it allows name resolves to time-out slow operations using `alarm()` and `siglongjmp()`. When doing this, libcurl used a global buffer that was not mutex protected and a multi-threaded application might therefore crash or otherwise misbehave.", + "Severity": "LOW", + "CweIDs": [ + "CWE-362", + "CWE-400" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28320", + "https://curl.se/docs/CVE-2023-28320.html", + "https://hackerone.com/reports/1929597", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28320", + "https://security.netapp.com/advisory/ntap-20230609-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-28320" + ], + "PublishedDate": "2023-05-26T21:15:00Z", + "LastModifiedDate": "2023-06-09T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3219", + "PkgID": "gpgv@2.2.27-2+deb11u2", + "PkgName": "gpgv", + "InstalledVersion": "2.2.27-2+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3219", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "denial of service issue (resource consumption) using compressed packets", + "Description": "GnuPG can be made to spin on a relatively small input by (for example) crafting a public key with thousands of signatures attached, compressed down to just a few KB.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-3219", + "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + "https://dev.gnupg.org/D556", + "https://dev.gnupg.org/T5993", + "https://marc.info/?l=oss-security\u0026m=165696590211434\u0026w=4", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + "https://security.netapp.com/advisory/ntap-20230324-0001/", + "https://www.cve.org/CVERecord?id=CVE-2022-3219" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-05-26T16:31:00Z" + }, + { + "VulnerabilityID": "CVE-2011-3374", + "PkgID": "libapt-pkg6.0@2.2.4", + "PkgName": "libapt-pkg6.0", + "InstalledVersion": "2.2.4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "PublishedDate": "2019-11-26T00:15:00Z", + "LastModifiedDate": "2021-02-09T16:08:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "libblkid1@2.36.1-8+deb11u1", + "PkgName": "libblkid1", + "InstalledVersion": "2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3999", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "FixedVersion": "2.31-13+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3999", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "Description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2023-02-12T23:43:00Z" + }, + { + "VulnerabilityID": "CVE-2010-4756", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "Severity": "LOW", + "CweIDs": [ + "CWE-399" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V2Score": 4 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V2Score": 5 + } + }, + "References": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756" + ], + "PublishedDate": "2011-03-02T20:00:00Z", + "LastModifiedDate": "2021-09-01T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-20796", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796" + ], + "PublishedDate": "2019-02-26T02:29:00Z", + "LastModifiedDate": "2019-11-05T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010022", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack guard protection bypass", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2021-06-10T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010023", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "Description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010024", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: ASLR bypass using cache of thread stack and heap", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-200" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010025", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: information disclosure of heap addresses of pthread_created thread", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-330" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9192", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192" + ], + "PublishedDate": "2019-02-26T18:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3999", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "FixedVersion": "2.31-13+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3999", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "Description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2023-02-12T23:43:00Z" + }, + { + "VulnerabilityID": "CVE-2010-4756", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "Severity": "LOW", + "CweIDs": [ + "CWE-399" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V2Score": 4 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V2Score": 5 + } + }, + "References": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756" + ], + "PublishedDate": "2011-03-02T20:00:00Z", + "LastModifiedDate": "2021-09-01T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-20796", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796" + ], + "PublishedDate": "2019-02-26T02:29:00Z", + "LastModifiedDate": "2019-11-05T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010022", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack guard protection bypass", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2021-06-10T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010023", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "Description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010024", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: ASLR bypass using cache of thread stack and heap", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-200" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010025", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: information disclosure of heap addresses of pthread_created thread", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-330" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9192", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192" + ], + "PublishedDate": "2019-02-26T18:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1304", + "PkgID": "libcom-err2@1.46.2-2", + "PkgName": "libcom-err2", + "InstalledVersion": "1.46.2-2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1304", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "e2fsprogs: out-of-bounds read/write via crafted filesystem", + "Description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125", + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 5.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8361", + "https://access.redhat.com/security/cve/CVE-2022-1304", + "https://bugzilla.redhat.com/2069726", + "https://bugzilla.redhat.com/show_bug.cgi?id=2069726", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1304", + "https://errata.almalinux.org/9/ALSA-2022-8361.html", + "https://errata.rockylinux.org/RLSA-2022:8361", + "https://linux.oracle.com/cve/CVE-2022-1304.html", + "https://linux.oracle.com/errata/ELSA-2022-8361.html", + "https://marc.info/?l=linux-ext4\u0026m=165056234501732\u0026w=2", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1304", + "https://ubuntu.com/security/notices/USN-5464-1", + "https://www.cve.org/CVERecord?id=CVE-2022-1304" + ], + "PublishedDate": "2022-04-14T21:15:00Z", + "LastModifiedDate": "2023-02-12T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32221", + "VendorIDs": [ + "DSA-5330-1" + ], + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32221", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "POST following PUT confusion", + "Description": "When doing HTTP(S) transfers, libcurl might erroneously use the read callback (`CURLOPT_READFUNCTION`) to ask for data to send, even when the `CURLOPT_POSTFIELDS` option has been set, if the same handle previously was used to issue a `PUT` request which used that callback. This flaw may surprise the application and cause it to misbehave and either send off the wrong data or use memory after free or similar in the subsequent `POST` request. The problem exists in the logic for a reused handle when it is changed from a PUT to a POST.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-668" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 4.8 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Jan/19", + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://www.openwall.com/lists/oss-security/2023/05/17/4", + "https://access.redhat.com/errata/RHSA-2023:0333", + "https://access.redhat.com/security/cve/CVE-2022-32221", + "https://bugzilla.redhat.com/2135411", + "https://bugzilla.redhat.com/show_bug.cgi?id=2135411", + "https://curl.se/docs/CVE-2022-32221.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32221", + "https://errata.almalinux.org/9/ALSA-2023-0333.html", + "https://errata.rockylinux.org/RLSA-2023:0333", + "https://hackerone.com/reports/1704017", + "https://linux.oracle.com/cve/CVE-2022-32221.html", + "https://linux.oracle.com/errata/ELSA-2023-0333.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32221", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20230110-0006/", + "https://security.netapp.com/advisory/ntap-20230208-0002/", + "https://support.apple.com/kb/HT213604", + "https://support.apple.com/kb/HT213605", + "https://ubuntu.com/security/notices/USN-5702-1", + "https://ubuntu.com/security/notices/USN-5702-2", + "https://ubuntu.com/security/notices/USN-5823-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32221", + "https://www.debian.org/security/2023/dsa-5330" + ], + "PublishedDate": "2022-12-05T22:15:00Z", + "LastModifiedDate": "2023-05-17T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-23914", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23914", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS ignored on multiple requests", + "Description": "A cleartext transmission of sensitive information vulnerability exists in curl \u003cv7.88.0 that could cause HSTS functionality fail when multiple URLs are requested serially. Using its HSTS support, curl can be instructed to use HTTPS instead of usingan insecure clear-text HTTP step even when HTTP is provided in the URL. ThisHSTS mechanism would however surprisingly be ignored by subsequent transferswhen done on the same command line because the state would not be properlycarried on.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-23914", + "https://curl.se/docs/CVE-2023-23914.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23914", + "https://hackerone.com/reports/1813864", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23914", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23914" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-03-09T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28322", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28322", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "more POST-after-PUT confusion", + "Description": "An information disclosure vulnerability exists in curl \u003cv8.1.0 when doing HTTP(S) transfers, libcurl might erroneously use the read callback (`CURLOPT_READFUNCTION`) to ask for data to send, even when the `CURLOPT_POSTFIELDS` option has been set, if the same handle previously wasused to issue a `PUT` request which used that callback. This flaw may surprise the application and cause it to misbehave and either send off the wrong data or use memory after free or similar in the second transfer. The problem exists in the logic for a reused handle when it is (expected to be) changed from a PUT to a POST.", + "Severity": "CRITICAL", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:L", + "V3Score": 4.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28322", + "https://curl.se/docs/CVE-2023-28322.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28322", + "https://hackerone.com/reports/1954658", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F4I75RDGX5ULSSCBE5BF3P5I5SFO7ULQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z2LIWHWKOVH24COGGBCVOWDXXIUPKOMK/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28322", + "https://security.netapp.com/advisory/ntap-20230609-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-28322" + ], + "PublishedDate": "2023-05-26T21:15:00Z", + "LastModifiedDate": "2023-06-09T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42916", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42916", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS bypass via IDN", + "Description": "In curl before 7.86.0, the HSTS check could be bypassed to trick it into staying with HTTP. Using its HSTS support, curl can be instructed to use HTTPS directly (instead of using an insecure cleartext HTTP step) even when HTTP is provided in the URL. This mechanism could be bypassed if the host name in the given URL uses IDN characters that get replaced with ASCII counterparts as part of the IDN conversion, e.g., using the character UTF-8 U+3002 (IDEOGRAPHIC FULL STOP) instead of the common ASCII full stop of U+002E (.). The earliest affected version is 7.77.0 2021-05-26.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Jan/19", + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://www.openwall.com/lists/oss-security/2022/12/21/1", + "https://access.redhat.com/security/cve/CVE-2022-42916", + "https://curl.se/docs/CVE-2022-42916.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42916", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/37YEVVC6NAF6H7UHH6YAUY5QEVY6LIH2/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HVU3IMZCKR4VE6KJ4GCWRL2ILLC6OV76/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q27V5YYMXUVI6PRZQVECON32XPVWTKDK/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42916", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20221209-0010/", + "https://support.apple.com/kb/HT213604", + "https://support.apple.com/kb/HT213605", + "https://ubuntu.com/security/notices/USN-5702-1", + "https://www.cve.org/CVERecord?id=CVE-2022-42916" + ], + "PublishedDate": "2022-10-29T02:15:00Z", + "LastModifiedDate": "2023-03-28T14:13:00Z" + }, + { + "VulnerabilityID": "CVE-2022-43551", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-43551", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS bypass via IDN", + "Description": "A vulnerability exists in curl \u003c7.87.0 HSTS check that could be bypassed to trick it to keep using HTTP. Using its HSTS support, curl can be instructed to use HTTPS instead of using an insecure clear-text HTTP step even when HTTP is provided in the URL. However, the HSTS mechanism could be bypassed if the host name in the given URL first uses IDN characters that get replaced to ASCII counterparts as part of the IDN conversion. Like using the character UTF-8 U+3002 (IDEOGRAPHIC FULL STOP) instead of the common ASCII full stop (U+002E) `.`. Then in a subsequent request, it does not detect the HSTS state and makes a clear text transfer. Because it would store the info IDN encoded but look for it IDN decoded.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-43551", + "https://curl.se/docs/CVE-2022-43551.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43551", + "https://hackerone.com/reports/1755083", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/TVWZW5CNSJ7UYAF2BGSYAWAEXDJYUBHA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-43551", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://ubuntu.com/security/notices/USN-5788-1", + "https://www.cve.org/CVERecord?id=CVE-2022-43551" + ], + "PublishedDate": "2022-12-23T15:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27533", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27533", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TELNET option IAC injection", + "Description": "A vulnerability in input validation exists in curl \u003c8.0 during communication using the TELNET protocol may allow an attacker to pass on maliciously crafted user name and \"telnet options\" during server negotiation. The lack of proper input scrubbing allows an attacker to send content or perform option negotiation without the application's intent. This vulnerability could be exploited if an application allows user input, thereby enabling attackers to execute arbitrary code on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:L/A:N", + "V3Score": 3.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27533", + "https://curl.se/docs/CVE-2023-27533.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27533", + "https://hackerone.com/reports/1891474", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27533", + "https://security.netapp.com/advisory/ntap-20230420-0011/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://ubuntu.com/security/notices/USN-5964-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27533" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-21T23:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27534", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27534", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "SFTP path ~ resolving discrepancy", + "Description": "A path traversal vulnerability exists in curl \u003c8.0.0 SFTP implementation causes the tilde (~) character to be wrongly replaced when used as a prefix in the first path element, in addition to its intended use as the first element to indicate a path relative to the user's home directory. Attackers can exploit this flaw to bypass filtering or execute arbitrary code by crafting a path like /~2/foo while accessing a server with a specific user.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-22" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27534", + "https://curl.se/docs/CVE-2023-27534.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27534", + "https://hackerone.com/reports/1892351", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27534", + "https://security.netapp.com/advisory/ntap-20230420-0012/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://www.cve.org/CVERecord?id=CVE-2023-27534" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-20T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27535", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27535", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "FTP too eager connection reuse", + "Description": "An authentication bypass vulnerability exists in libcurl \u003c8.0.0 in the FTP connection reuse feature that can result in wrong credentials being used during subsequent transfers. Previously created connections are kept in a connection pool for reuse if they match the current setup. However, certain FTP settings such as CURLOPT_FTP_ACCOUNT, CURLOPT_FTP_ALTERNATIVE_TO_USER, CURLOPT_FTP_SSL_CCC, and CURLOPT_USE_SSL were not included in the configuration match checks, causing them to match too easily. This could lead to libcurl using the wrong credentials when performing a transfer, potentially allowing unauthorized access to sensitive information.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-287" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2650", + "https://access.redhat.com/security/cve/CVE-2023-27535", + "https://bugzilla.redhat.com/2179073", + "https://bugzilla.redhat.com/show_bug.cgi?id=2179073", + "https://bugzilla.redhat.com/show_bug.cgi?id=2188029", + "https://curl.se/docs/CVE-2023-27535.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27535", + "https://errata.almalinux.org/9/ALSA-2023-2650.html", + "https://errata.rockylinux.org/RLSA-2023:3106", + "https://hackerone.com/reports/1892780", + "https://linux.oracle.com/cve/CVE-2023-27535.html", + "https://linux.oracle.com/errata/ELSA-2023-3106.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27535", + "https://security.netapp.com/advisory/ntap-20230420-0010/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://ubuntu.com/security/notices/USN-5964-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27535" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-21T23:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28321", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28321", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "IDN wildcard match may lead to Improper Cerificate Validation", + "Description": "An improper certificate validation vulnerability exists in curl \u003cv8.1.0 in the way it supports matching of wildcard patterns when listed as \"Subject Alternative Name\" in TLS server certificates. curl can be built to use its own name matching function for TLS rather than one provided by a TLS library. This private wildcard matching function would match IDN (International Domain Name) hosts incorrectly and could as a result accept patterns that otherwise should mismatch. IDN hostnames are converted to puny code before used for certificate checks. Puny coded names always start with `xn--` and should not be allowed to pattern match, but the wildcard check in curl could still check for `x*`, which would match even though the IDN name most likely contained nothing even resembling an `x`.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 5.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28321", + "https://curl.se/docs/CVE-2023-28321.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28321", + "https://hackerone.com/reports/1950627", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/F4I75RDGX5ULSSCBE5BF3P5I5SFO7ULQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z2LIWHWKOVH24COGGBCVOWDXXIUPKOMK/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28321", + "https://security.netapp.com/advisory/ntap-20230609-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-28321" + ], + "PublishedDate": "2023-05-26T21:15:00Z", + "LastModifiedDate": "2023-06-09T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-43552", + "VendorIDs": [ + "DSA-5330-1" + ], + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-43552", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Use-after-free triggered by an HTTP proxy deny response", + "Description": "A use after free vulnerability exists in curl \u003c7.87.0. Curl can be asked to *tunnel* virtually all protocols it supports through an HTTP proxy. HTTP proxies can (and often do) deny such tunnel operations. When getting denied to tunnel the specific protocols SMB or TELNET, curl would use a heap-allocated struct after it had been freed, in its transfer shutdown code path.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Mar/17", + "https://access.redhat.com/errata/RHSA-2023:2478", + "https://access.redhat.com/security/cve/CVE-2022-43552", + "https://bugzilla.redhat.com/2120718", + "https://bugzilla.redhat.com/2152652", + "https://curl.se/docs/CVE-2022-43552.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43552", + "https://errata.almalinux.org/9/ALSA-2023-2478.html", + "https://hackerone.com/reports/1764858", + "https://linux.oracle.com/cve/CVE-2022-43552.html", + "https://linux.oracle.com/errata/ELSA-2023-2963.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-43552", + "https://security.netapp.com/advisory/ntap-20230214-0002/", + "https://support.apple.com/kb/HT213670", + "https://ubuntu.com/security/notices/USN-5788-1", + "https://ubuntu.com/security/notices/USN-5894-1", + "https://www.cve.org/CVERecord?id=CVE-2022-43552" + ], + "PublishedDate": "2023-02-09T20:15:00Z", + "LastModifiedDate": "2023-03-28T05:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-23915", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23915", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HSTS amnesia with --parallel", + "Description": "A cleartext transmission of sensitive information vulnerability exists in curl \u003cv7.88.0 that could cause HSTS functionality to behave incorrectly when multiple URLs are requested in parallel. Using its HSTS support, curl can be instructed to use HTTPS instead of using an insecure clear-text HTTP step even when HTTP is provided in the URL. This HSTS mechanism would however surprisingly fail when multiple transfers are done in parallel as the HSTS cache file gets overwritten by the most recentlycompleted transfer. A later HTTP-only transfer to the earlier host name would then *not* get upgraded properly to HSTS.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-319" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N", + "V3Score": 4.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-23915", + "https://curl.se/docs/CVE-2023-23915.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23915", + "https://hackerone.com/reports/1826048", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23915", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23915" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-03-09T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-23916", + "VendorIDs": [ + "DSA-5365-1" + ], + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u7", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-23916", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTP multi-header compression denial of service", + "Description": "An allocation of resources without limits or throttling vulnerability exists in curl \u003cv7.88.0 based on the \"chained\" HTTP compression algorithms, meaning that a server response can be compressed multiple times and potentially with differentalgorithms. The number of acceptable \"links\" in this \"decompression chain\" wascapped, but the cap was implemented on a per-header basis allowing a maliciousserver to insert a virtually unlimited number of compression steps simply byusing many headers. The use of such a decompression chain could result in a \"malloc bomb\", making curl end up spending enormous amounts of allocated heap memory, or trying to and returning out of memory errors.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:1701", + "https://access.redhat.com/security/cve/CVE-2023-23916", + "https://bugzilla.redhat.com/2167815", + "https://bugzilla.redhat.com/show_bug.cgi?id=2167815", + "https://curl.se/docs/CVE-2023-23916.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-23916", + "https://errata.almalinux.org/9/ALSA-2023-1701.html", + "https://errata.rockylinux.org/RLSA-2023:1140", + "https://hackerone.com/reports/1826048", + "https://linux.oracle.com/cve/CVE-2023-23916.html", + "https://linux.oracle.com/errata/ELSA-2023-1701.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00035.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BQKE6TXYDHOTFHLTBZ5X73GTKI7II5KO/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-23916", + "https://security.netapp.com/advisory/ntap-20230309-0006/", + "https://ubuntu.com/security/notices/USN-5891-1", + "https://www.cve.org/CVERecord?id=CVE-2023-23916", + "https://www.debian.org/security/2023/dsa-5365" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-04-18T16:49:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27536", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27536", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "GSS delegation too eager connection re-use", + "Description": "An authentication bypass vulnerability exists libcurl \u003c8.0.0 in the connection reuse feature which can reuse previously established connections with incorrect user permissions due to a failure to check for changes in the CURLOPT_GSSAPI_DELEGATION option. This vulnerability affects krb5/kerberos/negotiate/GSSAPI transfers and could potentially result in unauthorized access to sensitive information. The safest option is to not reuse connections if the CURLOPT_GSSAPI_DELEGATION option has been changed.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-287" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27536", + "https://curl.se/docs/CVE-2023-27536.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27536", + "https://hackerone.com/reports/1895135", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27536", + "https://security.netapp.com/advisory/ntap-20230420-0010/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://ubuntu.com/security/notices/USN-5964-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27536" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-06-06T20:34:00Z" + }, + { + "VulnerabilityID": "CVE-2023-27538", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27538", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "SSH connection too eager reuse still", + "Description": "An authentication bypass vulnerability exists in libcurl prior to v8.0.0 where it reuses a previously established SSH connection despite the fact that an SSH option was modified, which should have prevented reuse. libcurl maintains a pool of previously used connections to reuse them for subsequent transfers if the configurations match. However, two SSH settings were omitted from the configuration check, allowing them to match easily, potentially leading to the reuse of an inappropriate connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-287" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27538", + "https://curl.se/docs/CVE-2023-27538.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27538", + "https://hackerone.com/reports/1898475", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00025.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/36NBD5YLJXXEDZLDGNFCERWRYJQ6LAQW/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27538", + "https://security.netapp.com/advisory/ntap-20230420-0010/", + "https://ubuntu.com/security/notices/USN-5964-1", + "https://www.cve.org/CVERecord?id=CVE-2023-27538" + ], + "PublishedDate": "2023-03-30T20:15:00Z", + "LastModifiedDate": "2023-04-21T23:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-22922", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-22922", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "curl: Content not matching hash in Metalink is not being discarded", + "Description": "When curl is instructed to download content using the metalink feature, thecontents is verified against a hash provided in the metalink XML file.The metalink XML file points out to the client how to get the same contentfrom a set of different URLs, potentially hosted by different servers and theclient can then download the file from one or several of them. In a serial orparallel manner.If one of the servers hosting the contents has been breached and the contentsof the specific file on that server is replaced with a modified payload, curlshould detect this when the hash of the file mismatches after a completeddownload. It should remove the contents and instead try getting the contentsfrom another URL. This is not done, and instead such a hash mismatch is onlymentioned in text and the potentially malicious content is kept in the file ondisk.", + "Severity": "LOW", + "CweIDs": [ + "CWE-755" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 4.3, + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-22922", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://curl.se/docs/CVE-2021-22922.html", + "https://hackerone.com/reports/1213175", + "https://linux.oracle.com/cve/CVE-2021-22922.html", + "https://linux.oracle.com/errata/ELSA-2021-3582.html", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/r61db8e7dcb56dc000a5387a88f7a473bacec5ee01b9ff3f55308aacc@%3Cusers.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cdev.kafka.apache.org%3E", + "https://lists.apache.org/thread.html/rbf4ce74b0d1fa9810dec50ba3ace0caeea677af7c27a97111c06ccb7@%3Cusers.kafka.apache.org%3E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRUCW2UVNYUDZF72DQLFQR4PJEC6CF7V/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-22922", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20210902-0003/", + "https://www.cve.org/CVERecord?id=CVE-2021-22922", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-08-05T21:15:00Z", + "LastModifiedDate": "2023-01-05T18:16:00Z" + }, + { + "VulnerabilityID": "CVE-2021-22923", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-22923", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "curl: Metalink download sends credentials", + "Description": "When curl is instructed to get content using the metalink feature, and a user name and password are used to download the metalink XML file, those same credentials are then subsequently passed on to each of the servers from which curl will download or try to download the contents from. Often contrary to the user's expectations and intentions and without telling the user it happened.", + "Severity": "LOW", + "CweIDs": [ + "CWE-522" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:H/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:N/A:N", + "V2Score": 2.6, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:N/A:N", + "V3Score": 5.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-22923", + "https://cert-portal.siemens.com/productcert/pdf/ssa-389290.pdf", + "https://curl.se/docs/CVE-2021-22923.html", + "https://hackerone.com/reports/1213181", + "https://linux.oracle.com/cve/CVE-2021-22923.html", + "https://linux.oracle.com/errata/ELSA-2021-3582.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRUCW2UVNYUDZF72DQLFQR4PJEC6CF7V/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-22923", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20210902-0003/", + "https://www.cve.org/CVERecord?id=CVE-2021-22923", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-08-05T21:15:00Z", + "LastModifiedDate": "2023-01-05T18:17:00Z" + }, + { + "VulnerabilityID": "CVE-2022-35252", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "FixedVersion": "7.74.0-1.3+deb11u3", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-35252", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Incorrect handling of control code characters in cookies", + "Description": "When curl is used to retrieve and parse cookies from a HTTP(S) server, itaccepts cookies using control codes that when later are sent back to a HTTPserver might make the server return 400 responses. Effectively allowing a\"sister site\" to deny service to all siblings.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.1 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2023/Jan/20", + "http://seclists.org/fulldisclosure/2023/Jan/21", + "https://access.redhat.com/errata/RHSA-2023:2478", + "https://access.redhat.com/security/cve/CVE-2022-35252", + "https://bugzilla.redhat.com/2120718", + "https://bugzilla.redhat.com/2152652", + "https://curl.se/docs/CVE-2022-35252.html", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35252", + "https://errata.almalinux.org/9/ALSA-2023-2478.html", + "https://hackerone.com/reports/1613943", + "https://linux.oracle.com/cve/CVE-2022-35252.html", + "https://linux.oracle.com/errata/ELSA-2023-2963.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00028.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-35252", + "https://security.gentoo.org/glsa/202212-01", + "https://security.netapp.com/advisory/ntap-20220930-0005/", + "https://support.apple.com/kb/HT213603", + "https://support.apple.com/kb/HT213604", + "https://ubuntu.com/security/notices/USN-5587-1", + "https://www.cve.org/CVERecord?id=CVE-2022-35252", + "https://www.openwall.com/lists/oss-security/2022/08/31/2" + ], + "PublishedDate": "2022-09-23T14:15:00Z", + "LastModifiedDate": "2023-03-01T18:09:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28320", + "PkgID": "libcurl4@7.74.0-1.3+deb11u2", + "PkgName": "libcurl4", + "InstalledVersion": "7.74.0-1.3+deb11u2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28320", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "siglongjmp race condition may lead to crash", + "Description": "A denial of service vulnerability exists in curl \u003cv8.1.0 in the way libcurl provides several different backends for resolving host names, selected at build time. If it is built to use the synchronous resolver, it allows name resolves to time-out slow operations using `alarm()` and `siglongjmp()`. When doing this, libcurl used a global buffer that was not mutex protected and a multi-threaded application might therefore crash or otherwise misbehave.", + "Severity": "LOW", + "CweIDs": [ + "CWE-362", + "CWE-400" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28320", + "https://curl.se/docs/CVE-2023-28320.html", + "https://hackerone.com/reports/1929597", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28320", + "https://security.netapp.com/advisory/ntap-20230609-0009/", + "https://www.cve.org/CVERecord?id=CVE-2023-28320" + ], + "PublishedDate": "2023-05-26T21:15:00Z", + "LastModifiedDate": "2023-06-09T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-8457", + "PkgID": "libdb5.3@5.3.28+dfsg1-0.8", + "PkgName": "libdb5.3", + "InstalledVersion": "5.3.28+dfsg1-0.8", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-8457", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "sqlite: heap out-of-bound read in function rtreenode()", + "Description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + "https://access.redhat.com/security/cve/CVE-2019-8457", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://linux.oracle.com/cve/CVE-2019-8457.html", + "https://linux.oracle.com/errata/ELSA-2020-1810.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + "https://security.netapp.com/advisory/ntap-20190606-0002/", + "https://ubuntu.com/security/notices/USN-4004-1", + "https://ubuntu.com/security/notices/USN-4004-2", + "https://ubuntu.com/security/notices/USN-4019-1", + "https://ubuntu.com/security/notices/USN-4019-2", + "https://usn.ubuntu.com/4004-1/", + "https://usn.ubuntu.com/4004-2/", + "https://usn.ubuntu.com/4019-1/", + "https://usn.ubuntu.com/4019-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-8457", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.sqlite.org/releaselog/3_28_0.html", + "https://www.sqlite.org/src/info/90acdbfce9c08858" + ], + "PublishedDate": "2019-05-30T16:29:00Z", + "LastModifiedDate": "2021-07-31T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33560", + "PkgID": "libgcrypt20@1.8.7-6", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.7-6", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33560", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm", + "Description": "Libgcrypt before 1.8.8 and 1.9.x before 1.9.3 mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm, and the window size is not chosen appropriately. This, for example, affects use of ElGamal in OpenPGP.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + "https://access.redhat.com/security/cve/CVE-2021-33560", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + "https://dev.gnupg.org/T5305", + "https://dev.gnupg.org/T5328", + "https://dev.gnupg.org/T5466", + "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2021-4409.html", + "https://linux.oracle.com/cve/CVE-2021-33560.html", + "https://linux.oracle.com/errata/ELSA-2022-9263.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33560", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-06-08T11:15:00Z", + "LastModifiedDate": "2022-12-07T01:20:00Z" + }, + { + "VulnerabilityID": "CVE-2018-6829", + "PkgID": "libgcrypt20@1.8.7-6", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.7-6", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6829", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: ElGamal implementation doesn't have semantic security due to incorrectly encoded plaintexts possibly allowing to obtain sensitive information", + "Description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-6829", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + "https://www.cve.org/CVERecord?id=CVE-2018-6829", + "https://www.oracle.com/security-alerts/cpujan2020.html" + ], + "PublishedDate": "2018-02-07T23:29:00Z", + "LastModifiedDate": "2020-01-15T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0361", + "VendorIDs": [ + "DSA-5349-1" + ], + "PkgID": "libgnutls30@3.7.1-5+deb11u2", + "PkgName": "libgnutls30", + "InstalledVersion": "3.7.1-5+deb11u2", + "FixedVersion": "3.7.1-5+deb11u3", + "Layer": { + "Digest": "sha256:de23cba1e094e297f826549cabe47ff11b0038d5e6559a7e734b90754a689e06", + "DiffID": "sha256:2d934e5ade7a4a3582856351bf70b45bb5faa97a333b1480be71590eb9951960" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0361", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing side-channel in the TLS RSA key exchange code", + "Description": "A timing side-channel in the handling of RSA ClientKeyExchange messages was discovered in GnuTLS. This side-channel can be sufficient to recover the key encrypted in the RSA ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption the attacker would need to send a large amount of specially crafted messages to the vulnerable server. By recovering the secret from the ClientKeyExchange message, the attacker would be able to decrypt the application data exchanged over that connection.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:1141", + "https://access.redhat.com/security/cve/CVE-2023-0361", + "https://bugzilla.redhat.com/2162596", + "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + "https://errata.almalinux.org/9/ALSA-2023-1141.html", + "https://errata.rockylinux.org/RLSA-2023:1569", + "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + "https://gitlab.com/gnutls/gnutls/-/issues/1050", + "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + "https://linux.oracle.com/cve/CVE-2023-0361.html", + "https://linux.oracle.com/errata/ELSA-2023-1569.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + "https://security.netapp.com/advisory/ntap-20230324-0005/", + "https://ubuntu.com/security/notices/USN-5901-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0361" + ], + "PublishedDate": "2023-02-15T18:15:00Z", + "LastModifiedDate": "2023-05-23T17:22:00Z" + }, + { + "VulnerabilityID": "CVE-2011-3389", + "PkgID": "libgnutls30@3.7.1-5+deb11u2", + "PkgName": "libgnutls30", + "InstalledVersion": "3.7.1-5+deb11u2", + "Layer": { + "Digest": "sha256:de23cba1e094e297f826549cabe47ff11b0038d5e6559a7e734b90754a689e06", + "DiffID": "sha256:2d934e5ade7a4a3582856351bf70b45bb5faa97a333b1480be71590eb9951960" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3389", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)", + "Description": "The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a \"BEAST\" attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V2Score": 4.3 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V2Score": 4.3 + } + }, + "References": [ + "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + "http://curl.haxx.se/docs/adv_20120124B.html", + "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + "http://ekoparty.org/2011/juliano-rizzo.php", + "http://eprint.iacr.org/2004/111", + "http://eprint.iacr.org/2006/136", + "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + "http://marc.info/?l=bugtraq\u0026m=132750579901589\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=132872385320240\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=133365109612558\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=133728004526190\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=134254866602253\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=134254957702612\u0026w=2", + "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + "http://osvdb.org/74829", + "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + "http://secunia.com/advisories/45791", + "http://secunia.com/advisories/47998", + "http://secunia.com/advisories/48256", + "http://secunia.com/advisories/48692", + "http://secunia.com/advisories/48915", + "http://secunia.com/advisories/48948", + "http://secunia.com/advisories/49198", + "http://secunia.com/advisories/55322", + "http://secunia.com/advisories/55350", + "http://secunia.com/advisories/55351", + "http://security.gentoo.org/glsa/glsa-201203-02.xml", + "http://security.gentoo.org/glsa/glsa-201406-32.xml", + "http://support.apple.com/kb/HT4999", + "http://support.apple.com/kb/HT5001", + "http://support.apple.com/kb/HT5130", + "http://support.apple.com/kb/HT5281", + "http://support.apple.com/kb/HT5501", + "http://support.apple.com/kb/HT6150", + "http://technet.microsoft.com/security/advisory/2588513", + "http://vnhacker.blogspot.com/2011/09/beast.html", + "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + "http://www.debian.org/security/2012/dsa-2398", + "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + "http://www.ibm.com/developerworks/java/jdk/alerts/", + "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + "http://www.insecure.cl/Beast-SSL.rar", + "http://www.kb.cert.org/vuls/id/864643", + "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + "http://www.opera.com/docs/changelogs/mac/1151/", + "http://www.opera.com/docs/changelogs/mac/1160/", + "http://www.opera.com/docs/changelogs/unix/1151/", + "http://www.opera.com/docs/changelogs/unix/1160/", + "http://www.opera.com/docs/changelogs/windows/1151/", + "http://www.opera.com/docs/changelogs/windows/1160/", + "http://www.opera.com/support/kb/view/1004/", + "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + "http://www.securityfocus.com/bid/49388", + "http://www.securityfocus.com/bid/49778", + "http://www.securitytracker.com/id/1029190", + "http://www.securitytracker.com/id?1025997", + "http://www.securitytracker.com/id?1026103", + "http://www.securitytracker.com/id?1026704", + "http://www.ubuntu.com/usn/USN-1263-1", + "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + "https://access.redhat.com/security/cve/CVE-2011-3389", + "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + "https://bugzilla.novell.com/show_bug.cgi?id=719047", + "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + "https://hermes.opensuse.org/messages/13154861", + "https://hermes.opensuse.org/messages/13155432", + "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + "https://linux.oracle.com/cve/CVE-2011-3389.html", + "https://linux.oracle.com/errata/ELSA-2011-1380.html", + "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + "https://ubuntu.com/security/notices/USN-1263-1", + "https://www.cve.org/CVERecord?id=CVE-2011-3389" + ], + "PublishedDate": "2011-09-06T19:55:00Z", + "LastModifiedDate": "2022-11-29T15:56:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libgssapi-krb5-2@1.18.3-6+deb11u1", + "PkgName": "libgssapi-krb5-2", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libgssapi-krb5-2@1.18.3-6+deb11u1", + "PkgName": "libgssapi-krb5-2", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libk5crypto3@1.18.3-6+deb11u1", + "PkgName": "libk5crypto3", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libk5crypto3@1.18.3-6+deb11u1", + "PkgName": "libk5crypto3", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libkrb5-3@1.18.3-6+deb11u1", + "PkgName": "libkrb5-3", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libkrb5-3@1.18.3-6+deb11u1", + "PkgName": "libkrb5-3", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libkrb5support0@1.18.3-6+deb11u1", + "PkgName": "libkrb5support0", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libkrb5support0@1.18.3-6+deb11u1", + "PkgName": "libkrb5support0", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2953", + "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1", + "PkgName": "libldap-2.4-2", + "InstalledVersion": "2.4.57+dfsg-3+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2953", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "null pointer dereference in ber_memalloc_x function", + "Description": "A vulnerability was found in openldap. This security flaw causes a null pointer dereference in ber_memalloc_x() function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-2953", + "https://bugs.openldap.org/show_bug.cgi?id=9904", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2953", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2953", + "https://www.cve.org/CVERecord?id=CVE-2023-2953" + ], + "PublishedDate": "2023-05-30T22:15:00Z", + "LastModifiedDate": "2023-06-06T17:17:00Z" + }, + { + "VulnerabilityID": "CVE-2015-3276", + "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1", + "PkgName": "libldap-2.4-2", + "InstalledVersion": "2.4.57+dfsg-3+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2015-3276", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "incorrect multi-keyword mode cipherstring parsing", + "Description": "The nss_parse_ciphers function in libraries/libldap/tls_m.c in OpenLDAP does not properly parse OpenSSL-style multi-keyword mode cipher strings, which might cause a weaker than intended cipher to be used and allow remote attackers to have unspecified impact via unknown vectors.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V2Score": 4.3 + } + }, + "References": [ + "http://rhn.redhat.com/errata/RHSA-2015-2131.html", + "http://www.oracle.com/technetwork/topics/security/linuxbulletinoct2015-2719645.html", + "http://www.securitytracker.com/id/1034221", + "https://access.redhat.com/security/cve/CVE-2015-3276", + "https://bugzilla.redhat.com/show_bug.cgi?id=1238322", + "https://linux.oracle.com/cve/CVE-2015-3276.html", + "https://linux.oracle.com/errata/ELSA-2015-2131.html", + "https://nvd.nist.gov/vuln/detail/CVE-2015-3276", + "https://www.cve.org/CVERecord?id=CVE-2015-3276" + ], + "PublishedDate": "2015-12-07T20:59:00Z", + "LastModifiedDate": "2023-04-28T18:28:00Z" + }, + { + "VulnerabilityID": "CVE-2017-14159", + "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1", + "PkgName": "libldap-2.4-2", + "InstalledVersion": "2.4.57+dfsg-3+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-14159", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openldap: Privilege escalation via PID file manipulation", + "Description": "slapd in OpenLDAP 2.4.45 and earlier creates a PID file after dropping privileges to a non-root account, which might allow local users to kill arbitrary processes by leveraging access to this non-root account for PID file modification before a root script executes a \"kill `cat /pathname`\" command, as demonstrated by openldap-initscript.", + "Severity": "LOW", + "CweIDs": [ + "CWE-665" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 1.9, + "V3Score": 4.7 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 4.4 + } + }, + "References": [ + "http://www.openldap.org/its/index.cgi?findid=8703", + "https://access.redhat.com/security/cve/CVE-2017-14159", + "https://nvd.nist.gov/vuln/detail/CVE-2017-14159", + "https://www.cve.org/CVERecord?id=CVE-2017-14159", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2017-09-05T18:29:00Z", + "LastModifiedDate": "2022-06-13T19:18:00Z" + }, + { + "VulnerabilityID": "CVE-2017-17740", + "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1", + "PkgName": "libldap-2.4-2", + "InstalledVersion": "2.4.57+dfsg-3+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-17740", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openldap: contrib/slapd-modules/nops/nops.c attempts to free stack buffer allowing remote attackers to cause a denial of service", + "Description": "contrib/slapd-modules/nops/nops.c in OpenLDAP through 2.4.45, when both the nops module and the memberof overlay are enabled, attempts to free a buffer that was allocated on the stack, which allows remote attackers to cause a denial of service (slapd crash) via a member MODDN operation.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00053.html", + "http://lists.opensuse.org/opensuse-security-announce/2019-09/msg00058.html", + "http://www.openldap.org/its/index.cgi/Incoming?id=8759", + "https://access.redhat.com/security/cve/CVE-2017-17740", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://nvd.nist.gov/vuln/detail/CVE-2017-17740", + "https://www.cve.org/CVERecord?id=CVE-2017-17740", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2017-12-18T06:29:00Z", + "LastModifiedDate": "2022-06-13T19:10:00Z" + }, + { + "VulnerabilityID": "CVE-2020-15719", + "PkgID": "libldap-2.4-2@2.4.57+dfsg-3+deb11u1", + "PkgName": "libldap-2.4-2", + "InstalledVersion": "2.4.57+dfsg-3+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-15719", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openldap: Certificate validation incorrectly matches name against CN-ID", + "Description": "libldap in certain third-party OpenLDAP packages has a certificate-validation flaw when the third-party package is asserting RFC6125 support. It considers CN even when there is a non-matching subjectAltName (SAN). This is fixed in, for example, openldap-2.4.46-10.el8 in Red Hat Enterprise Linux.", + "Severity": "LOW", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:H/Au:N/C:P/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N", + "V2Score": 4, + "V3Score": 4.2 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N", + "V3Score": 4.2 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00033.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-09/msg00059.html", + "https://access.redhat.com/errata/RHBA-2019:3674", + "https://access.redhat.com/security/cve/CVE-2020-15719", + "https://bugs.openldap.org/show_bug.cgi?id=9266", + "https://bugzilla.redhat.com/show_bug.cgi?id=1740070", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://nvd.nist.gov/vuln/detail/CVE-2020-15719", + "https://www.cve.org/CVERecord?id=CVE-2020-15719", + "https://www.oracle.com/security-alerts/cpuapr2022.html" + ], + "PublishedDate": "2020-07-14T14:15:00Z", + "LastModifiedDate": "2022-05-12T15:01:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "libmount1@2.36.1-8+deb11u1", + "PkgName": "libmount1", + "InstalledVersion": "2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29458", + "PkgID": "libncurses6@6.2+20201114-2", + "PkgName": "libncurses6", + "InstalledVersion": "6.2+20201114-2", + "FixedVersion": "6.2+20201114-2+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29458", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "ncurses: segfaulting OOB read", + "Description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:H", + "V2Score": 5.8, + "V3Score": 7.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458" + ], + "PublishedDate": "2022-04-18T21:15:00Z", + "LastModifiedDate": "2022-11-08T19:46:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29491", + "PkgID": "libncurses6@6.2+20201114-2", + "PkgName": "libncurses6", + "InstalledVersion": "6.2+20201114-2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29491", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Local users can trigger security-relevant memory corruption via malformed data", + "Description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4" + ], + "PublishedDate": "2023-04-14T01:15:00Z", + "LastModifiedDate": "2023-05-17T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29458", + "PkgID": "libncursesw6@6.2+20201114-2", + "PkgName": "libncursesw6", + "InstalledVersion": "6.2+20201114-2", + "FixedVersion": "6.2+20201114-2+deb11u1", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29458", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "ncurses: segfaulting OOB read", + "Description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:H", + "V2Score": 5.8, + "V3Score": 7.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458" + ], + "PublishedDate": "2022-04-18T21:15:00Z", + "LastModifiedDate": "2022-11-08T19:46:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29491", + "PkgID": "libncursesw6@6.2+20201114-2", + "PkgName": "libncursesw6", + "InstalledVersion": "6.2+20201114-2", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29491", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Local users can trigger security-relevant memory corruption via malformed data", + "Description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4" + ], + "PublishedDate": "2023-04-14T01:15:00Z", + "LastModifiedDate": "2023-05-17T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1586", + "PkgID": "libpcre2-8-0@10.36-2", + "PkgName": "libpcre2-8-0", + "InstalledVersion": "10.36-2", + "FixedVersion": "10.36-2+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1586", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre2: Out-of-bounds read in compile_xclass_matchingpath in pcre2_jit_compile.c", + "Description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:5809", + "https://access.redhat.com/security/cve/CVE-2022-1586", + "https://bugzilla.redhat.com/2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1586", + "https://errata.almalinux.org/8/ALSA-2022-5809.html", + "https://errata.rockylinux.org/RLSA-2022:5809", + "https://github.com/PCRE2Project/pcre2/commit/50a51cb7e67268e6ad417eb07c9de9bfea5cc55a,", + "https://github.com/PCRE2Project/pcre2/commit/d4fa336fbcc388f89095b184ba6d99422cfc676c", + "https://linux.oracle.com/cve/CVE-2022-1586.html", + "https://linux.oracle.com/errata/ELSA-2022-5809.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1586", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1586" + ], + "PublishedDate": "2022-05-16T21:15:00Z", + "LastModifiedDate": "2023-03-16T05:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1587", + "PkgID": "libpcre2-8-0@10.36-2", + "PkgName": "libpcre2-8-0", + "InstalledVersion": "10.36-2", + "FixedVersion": "10.36-2+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1587", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre2: Out-of-bounds read in get_recurse_data_length in pcre2_jit_compile.c", + "Description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-1587", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077983,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1587", + "https://github.com/PCRE2Project/pcre2/commit/03654e751e7f0700693526b67dfcadda6b42c9d0", + "https://linux.oracle.com/cve/CVE-2022-1587.html", + "https://linux.oracle.com/errata/ELSA-2022-5251.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1587", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1587" + ], + "PublishedDate": "2022-05-16T21:15:00Z", + "LastModifiedDate": "2023-03-16T05:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-11164", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11164", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c", + "Description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 7.8, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://openwall.com/lists/oss-security/2017/07/11/3", + "http://www.openwall.com/lists/oss-security/2023/04/11/1", + "http://www.openwall.com/lists/oss-security/2023/04/12/1", + "http://www.securityfocus.com/bid/99575", + "https://access.redhat.com/security/cve/CVE-2017-11164", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + "https://www.cve.org/CVERecord?id=CVE-2017-11164" + ], + "PublishedDate": "2017-07-11T03:29:00Z", + "LastModifiedDate": "2023-04-12T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-16231", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-16231", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service", + "Description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + "http://seclists.org/fulldisclosure/2018/Dec/33", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101688", + "https://access.redhat.com/security/cve/CVE-2017-16231", + "https://bugs.exim.org/show_bug.cgi?id=2047", + "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + "https://www.cve.org/CVERecord?id=CVE-2017-16231" + ], + "PublishedDate": "2019-03-21T15:59:00Z", + "LastModifiedDate": "2019-04-02T13:55:00Z" + }, + { + "VulnerabilityID": "CVE-2017-7245", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7245", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7245", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7245" + ], + "PublishedDate": "2017-03-23T21:59:00Z", + "LastModifiedDate": "2018-08-17T10:29:00Z" + }, + { + "VulnerabilityID": "CVE-2017-7246", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7246", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7246", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7246" + ], + "PublishedDate": "2017-03-23T21:59:00Z", + "LastModifiedDate": "2018-08-17T10:29:00Z" + }, + { + "VulnerabilityID": "CVE-2019-20838", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20838", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: Buffer over-read in JIT when UTF is disabled and \\X or \\R has fixed quantifier greater than 1", + "Description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://access.redhat.com/security/cve/CVE-2019-20838", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2019-20838.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2019-20838", + "https://www.pcre.org/original/changelog.txt" + ], + "PublishedDate": "2020-06-15T17:15:00Z", + "LastModifiedDate": "2021-09-22T14:22:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36084", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36084", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: use-after-free in __cil_verify_classperms()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36084", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + "https://linux.oracle.com/cve/CVE-2021-36084.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36084" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:16:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36085", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36085", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: use-after-free in __cil_verify_classperms()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36085", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + "https://linux.oracle.com/cve/CVE-2021-36085.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36085" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:26:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36086", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36086", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free in cil_reset_classpermission()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36086", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + "https://linux.oracle.com/cve/CVE-2021-36086.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36086" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36087", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36087", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: heap-based buffer overflow in ebitmap_match_any()", + "Description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36087", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + "https://linux.oracle.com/cve/CVE-2021-36087.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36087" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T14:05:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "libsmartcols1@2.36.1-8+deb11u1", + "PkgName": "libsmartcols1", + "InstalledVersion": "2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4450", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4450", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "double free after calling PEM_read_bio_ex", + "Description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0215", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0215", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free following BIO_new_NDEF", + "Description": "The public API function BIO_new_NDEF is a helper function used for streaming\nASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\nSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\nend user applications.\n\nThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\nBIO onto the front of it to form a BIO chain, and then returns the new head of\nthe BIO chain to the caller. Under certain conditions, for example if a CMS\nrecipient public key is invalid, the new filter BIO is freed and the function\nreturns a NULL result indicating a failure. However, in this case, the BIO chain\nis not properly cleaned up and the BIO passed by the caller still retains\ninternal pointers to the previously freed filter BIO. If the caller then goes on\nto call BIO_pop() on the BIO then a use-after-free will occur. This will most\nlikely result in a crash.\n\n\n\nThis scenario occurs directly in the internal function B64_write_ASN1() which\nmay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\nthe BIO. This internal function is in turn called by the public API functions\nPEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\nSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\n\nOther public API functions that may be impacted by this include\ni2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\ni2d_PKCS7_bio_stream.\n\nThe OpenSSL cms and smime command line applications are similarly affected.\n\n\n\n", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0286", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0286", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "X.400 address type confusion in X.509 GeneralName", + "Description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-843" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-03-27T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0464", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0464", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "Description": "A security vulnerability has been identified in all supported versions\n\nof OpenSSL related to the verification of X.509 certificate chains\nthat include policy constraints. Attackers may be able to exploit this\nvulnerability by creating a malicious certificate chain that triggers\nexponential use of computational resources, leading to a denial-of-service\n(DoS) attack on affected systems.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt" + ], + "PublishedDate": "2023-03-22T17:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2650", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2097", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2097", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "AES OCB fails to encrypt some bytes", + "Description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of \"in place\" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt" + ], + "PublishedDate": "2022-07-05T11:15:00Z", + "LastModifiedDate": "2023-04-20T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4304", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4304", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing attack in RSA Decryption implementation", + "Description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "Severity": "MEDIUM", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T17:13:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0465", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0465", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Invalid certificate policies in leaf certificates are silently ignored", + "Description": "Applications that use a non-default option when verifying certificates may be\nvulnerable to an attack from a malicious CA to circumvent certain checks.\n\nInvalid certificate policies in leaf certificates are silently ignored by\nOpenSSL and other certificate policy checks are skipped for that certificate.\nA malicious CA could use this to deliberately assert invalid certificate policies\nin order to circumvent policy checking on the certificate altogether.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0466", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0466", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Certificate policy check not enabled", + "Description": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2007-6755", + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dual_EC_DRBG: weak pseudo random number generator", + "Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + } + }, + "References": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html" + ], + "PublishedDate": "2013-10-11T22:55:00Z", + "LastModifiedDate": "2022-11-01T14:44:00Z" + }, + { + "VulnerabilityID": "CVE-2010-0928", + "PkgID": "libssl1.1@1.1.1n-0+deb11u3", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u3", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: RSA authentication weakness", + "Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-310" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:N/A:N", + "V2Score": 4 + } + }, + "References": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928" + ], + "PublishedDate": "2010-03-05T19:30:00Z", + "LastModifiedDate": "2017-08-17T01:32:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3821", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in format_timespan() function", + "Description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821" + ], + "PublishedDate": "2022-11-08T22:15:00Z", + "LastModifiedDate": "2023-05-03T12:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4415", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "Description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3" + ], + "PublishedDate": "2023-01-11T15:15:00Z", + "LastModifiedDate": "2023-02-02T16:19:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4392", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + } + }, + "References": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392" + ], + "PublishedDate": "2013-10-28T22:55:00Z", + "LastModifiedDate": "2022-01-31T17:49:00Z" + }, + { + "VulnerabilityID": "CVE-2020-13529", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "Description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "Severity": "LOW", + "CweIDs": [ + "CWE-290" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V2Score": 2.9, + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529" + ], + "PublishedDate": "2021-05-10T16:15:00Z", + "LastModifiedDate": "2022-10-07T02:59:00Z" + }, + { + "VulnerabilityID": "CVE-2021-46848", + "PkgID": "libtasn1-6@4.16.0-2", + "PkgName": "libtasn1-6", + "InstalledVersion": "4.16.0-2", + "FixedVersion": "4.16.0-2+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-46848", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libtasn1: Out-of-bound access in ETYPE_OK", + "Description": "GNU Libtasn1 before 4.19.0 has an ETYPE_OK off-by-one array size check that affects asn1_encode_simple_der.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0343", + "https://access.redhat.com/security/cve/CVE-2021-46848", + "https://bugs.gentoo.org/866237", + "https://bugzilla.redhat.com/2140058", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + "https://errata.almalinux.org/9/ALSA-2023-0343.html", + "https://errata.rockylinux.org/RLSA-2023:0343", + "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + "https://gitlab.com/gnutls/libtasn1/-/issues/32", + "https://linux.oracle.com/cve/CVE-2021-46848.html", + "https://linux.oracle.com/errata/ELSA-2023-0343.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + "https://security.netapp.com/advisory/ntap-20221118-0006/", + "https://ubuntu.com/security/notices/USN-5707-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46848" + ], + "PublishedDate": "2022-10-24T14:15:00Z", + "LastModifiedDate": "2023-01-20T13:55:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29458", + "PkgID": "libtinfo6@6.2+20201114-2", + "PkgName": "libtinfo6", + "InstalledVersion": "6.2+20201114-2", + "FixedVersion": "6.2+20201114-2+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29458", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "ncurses: segfaulting OOB read", + "Description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:H", + "V2Score": 5.8, + "V3Score": 7.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458" + ], + "PublishedDate": "2022-04-18T21:15:00Z", + "LastModifiedDate": "2022-11-08T19:46:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29491", + "PkgID": "libtinfo6@6.2+20201114-2", + "PkgName": "libtinfo6", + "InstalledVersion": "6.2+20201114-2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29491", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Local users can trigger security-relevant memory corruption via malformed data", + "Description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4" + ], + "PublishedDate": "2023-04-14T01:15:00Z", + "LastModifiedDate": "2023-05-17T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3821", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in format_timespan() function", + "Description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821" + ], + "PublishedDate": "2022-11-08T22:15:00Z", + "LastModifiedDate": "2023-05-03T12:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4415", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "Description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3" + ], + "PublishedDate": "2023-01-11T15:15:00Z", + "LastModifiedDate": "2023-02-02T16:19:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4392", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + } + }, + "References": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392" + ], + "PublishedDate": "2013-10-28T22:55:00Z", + "LastModifiedDate": "2022-01-31T17:49:00Z" + }, + { + "VulnerabilityID": "CVE-2020-13529", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "Description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "Severity": "LOW", + "CweIDs": [ + "CWE-290" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V2Score": 2.9, + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529" + ], + "PublishedDate": "2021-05-10T16:15:00Z", + "LastModifiedDate": "2022-10-07T02:59:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "libuuid1@2.36.1-8+deb11u1", + "PkgName": "libuuid1", + "InstalledVersion": "2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4899", + "PkgID": "libzstd1@1.4.8+dfsg-2.1", + "PkgName": "libzstd1", + "InstalledVersion": "1.4.8+dfsg-2.1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4899", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in util.c", + "Description": "A vulnerability was found in zstd v1.4.10, where an attacker can supply empty string as an argument to the command line tool to cause buffer overrun.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-4899", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4899", + "https://github.com/facebook/zstd/issues/3200", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4899", + "https://www.cve.org/CVERecord?id=CVE-2022-4899" + ], + "PublishedDate": "2023-03-31T20:15:00Z", + "LastModifiedDate": "2023-04-07T01:19:00Z" + }, + { + "VulnerabilityID": "CVE-2007-5686", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-264" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N", + "V2Score": 4.9 + } + }, + "References": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "PublishedDate": "2007-10-28T17:08:00Z", + "LastModifiedDate": "2018-10-15T21:45:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4235", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "Severity": "LOW", + "CweIDs": [ + "CWE-367" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 3.3, + "V3Score": 4.7 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 3.7, + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235" + ], + "PublishedDate": "2019-12-03T15:15:00Z", + "LastModifiedDate": "2023-02-13T00:28:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19882", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.9, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882" + ], + "PublishedDate": "2019-12-18T16:15:00Z", + "LastModifiedDate": "2020-08-25T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29383", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Improper input validation in shadow-utils package utility chfn", + "Description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that \"cat /etc/passwd\" shows a rogue user account.", + "Severity": "LOW", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797" + ], + "PublishedDate": "2023-04-14T22:15:00Z", + "LastModifiedDate": "2023-04-24T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "mount@2.36.1-8+deb11u1", + "PkgName": "mount", + "InstalledVersion": "2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29458", + "PkgID": "ncurses-base@6.2+20201114-2", + "PkgName": "ncurses-base", + "InstalledVersion": "6.2+20201114-2", + "FixedVersion": "6.2+20201114-2+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29458", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "ncurses: segfaulting OOB read", + "Description": "ncurses 6.3 before patch 20220416 has an out-of-bounds read and segmentation violation in convert_strings in tinfo/read_entry.c in the terminfo library.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:H", + "V2Score": 5.8, + "V3Score": 7.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/41", + "https://access.redhat.com/security/cve/CVE-2022-29458", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29458", + "https://invisible-island.net/ncurses/NEWS.html#t20220416", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00037.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00014.html", + "https://lists.gnu.org/archive/html/bug-ncurses/2022-04/msg00016.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29458", + "https://support.apple.com/kb/HT213488", + "https://ubuntu.com/security/notices/USN-5477-1", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29458" + ], + "PublishedDate": "2022-04-18T21:15:00Z", + "LastModifiedDate": "2022-11-08T19:46:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29491", + "PkgID": "ncurses-base@6.2+20201114-2", + "PkgName": "ncurses-base", + "InstalledVersion": "6.2+20201114-2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29491", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Local users can trigger security-relevant memory corruption via malformed data", + "Description": "ncurses before 6.4 20230408, when used by a setuid application, allows local users to trigger security-relevant memory corruption via malformed data in a terminfo database file that is found in $HOME/.terminfo or reached via the TERMINFO or TERM environment variable.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=eb51b1ea1f75a0ec17c9c5937cb28df1e8eeec56", + "http://www.openwall.com/lists/oss-security/2023/04/19/10", + "http://www.openwall.com/lists/oss-security/2023/04/19/11", + "https://access.redhat.com/security/cve/CVE-2023-29491", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29491", + "https://invisible-island.net/ncurses/NEWS.html#index-t20230408", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29491", + "https://security.netapp.com/advisory/ntap-20230517-0009/", + "https://ubuntu.com/security/notices/USN-6099-1", + "https://www.cve.org/CVERecord?id=CVE-2023-29491", + "https://www.openwall.com/lists/oss-security/2023/04/12/5", + "https://www.openwall.com/lists/oss-security/2023/04/13/4" + ], + "PublishedDate": "2023-04-14T01:15:00Z", + "LastModifiedDate": "2023-05-17T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4450", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4450", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "double free after calling PEM_read_bio_ex", + "Description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0215", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0215", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free following BIO_new_NDEF", + "Description": "The public API function BIO_new_NDEF is a helper function used for streaming\nASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\nSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\nend user applications.\n\nThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\nBIO onto the front of it to form a BIO chain, and then returns the new head of\nthe BIO chain to the caller. Under certain conditions, for example if a CMS\nrecipient public key is invalid, the new filter BIO is freed and the function\nreturns a NULL result indicating a failure. However, in this case, the BIO chain\nis not properly cleaned up and the BIO passed by the caller still retains\ninternal pointers to the previously freed filter BIO. If the caller then goes on\nto call BIO_pop() on the BIO then a use-after-free will occur. This will most\nlikely result in a crash.\n\n\n\nThis scenario occurs directly in the internal function B64_write_ASN1() which\nmay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\nthe BIO. This internal function is in turn called by the public API functions\nPEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\nSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\n\nOther public API functions that may be impacted by this include\ni2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\ni2d_PKCS7_bio_stream.\n\nThe OpenSSL cms and smime command line applications are similarly affected.\n\n\n\n", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0286", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0286", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "X.400 address type confusion in X.509 GeneralName", + "Description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-843" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-03-27T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0464", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0464", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "Description": "A security vulnerability has been identified in all supported versions\n\nof OpenSSL related to the verification of X.509 certificate chains\nthat include policy constraints. Attackers may be able to exploit this\nvulnerability by creating a malicious certificate chain that triggers\nexponential use of computational resources, leading to a denial-of-service\n(DoS) attack on affected systems.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt" + ], + "PublishedDate": "2023-03-22T17:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2650", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2097", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2097", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "AES OCB fails to encrypt some bytes", + "Description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of \"in place\" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt" + ], + "PublishedDate": "2022-07-05T11:15:00Z", + "LastModifiedDate": "2023-04-20T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4304", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4304", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing attack in RSA Decryption implementation", + "Description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "Severity": "MEDIUM", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T17:13:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0465", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0465", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Invalid certificate policies in leaf certificates are silently ignored", + "Description": "Applications that use a non-default option when verifying certificates may be\nvulnerable to an attack from a malicious CA to circumvent certain checks.\n\nInvalid certificate policies in leaf certificates are silently ignored by\nOpenSSL and other certificate policy checks are skipped for that certificate.\nA malicious CA could use this to deliberately assert invalid certificate policies\nin order to circumvent policy checking on the certificate altogether.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0466", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0466", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Certificate policy check not enabled", + "Description": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2007-6755", + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dual_EC_DRBG: weak pseudo random number generator", + "Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + } + }, + "References": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html" + ], + "PublishedDate": "2013-10-11T22:55:00Z", + "LastModifiedDate": "2022-11-01T14:44:00Z" + }, + { + "VulnerabilityID": "CVE-2010-0928", + "PkgID": "openssl@1.1.1n-0+deb11u3", + "PkgName": "openssl", + "InstalledVersion": "1.1.1n-0+deb11u3", + "Layer": { + "Digest": "sha256:4581058b761f688c116a45463d9b7119672a39526f3c69e21bd84bac560851fb", + "DiffID": "sha256:fdf6fba687920e9a9f4ff392015db849404a02f0be6b1dd93f54f6851c45f1fa" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: RSA authentication weakness", + "Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-310" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:N/A:N", + "V2Score": 4 + } + }, + "References": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928" + ], + "PublishedDate": "2010-03-05T19:30:00Z", + "LastModifiedDate": "2017-08-17T01:32:00Z" + }, + { + "VulnerabilityID": "CVE-2007-5686", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-264" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N", + "V2Score": 4.9 + } + }, + "References": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "PublishedDate": "2007-10-28T17:08:00Z", + "LastModifiedDate": "2018-10-15T21:45:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4235", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "Severity": "LOW", + "CweIDs": [ + "CWE-367" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 3.3, + "V3Score": 4.7 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 3.7, + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235" + ], + "PublishedDate": "2019-12-03T15:15:00Z", + "LastModifiedDate": "2023-02-13T00:28:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19882", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.9, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882" + ], + "PublishedDate": "2019-12-18T16:15:00Z", + "LastModifiedDate": "2020-08-25T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29383", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Improper input validation in shadow-utils package utility chfn", + "Description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that \"cat /etc/passwd\" shows a rogue user account.", + "Severity": "LOW", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797" + ], + "PublishedDate": "2023-04-14T22:15:00Z", + "LastModifiedDate": "2023-04-24T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2020-16156", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-16156", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "perl-CPAN: Bypass of verification of signatures in CHECKSUMS files", + "Description": "CPAN 2.28 allows Signature Verification Bypass.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + "https://access.redhat.com/security/cve/CVE-2020-16156", + "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + "https://ubuntu.com/security/notices/USN-5689-1", + "https://ubuntu.com/security/notices/USN-5689-2", + "https://www.cve.org/CVERecord?id=CVE-2020-16156" + ], + "PublishedDate": "2021-12-13T18:15:00Z", + "LastModifiedDate": "2022-04-01T13:26:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31484", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31484", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "CPAN.pm before 2.35 does not verify TLS certificates when downloading ...", + "Description": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + "https://github.com/andk/cpanpm/pull/175", + "https://metacpan.org/dist/CPAN/changes", + "https://ubuntu.com/security/notices/USN-6112-1", + "https://ubuntu.com/security/notices/USN-6112-2", + "https://www.openwall.com/lists/oss-security/2023/04/18/14" + ], + "PublishedDate": "2023-04-29T00:15:00Z", + "LastModifiedDate": "2023-05-08T17:11:00Z" + }, + { + "VulnerabilityID": "CVE-2011-4116", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-4116", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "perl: File::Temp insecure temporary file handling", + "Description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N", + "V2Score": 1.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2011/11/04/2", + "http://www.openwall.com/lists/oss-security/2011/11/04/4", + "https://access.redhat.com/security/cve/CVE-2011-4116", + "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + "https://seclists.org/oss-sec/2011/q4/238", + "https://www.cve.org/CVERecord?id=CVE-2011-4116" + ], + "PublishedDate": "2020-01-31T18:15:00Z", + "LastModifiedDate": "2020-02-05T22:10:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31486", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31486", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTP::Tiny 0.082, a Perl core module since 5.13.9 and available standa ...", + "Description": "HTTP::Tiny 0.082, a Perl core module since 5.13.9 and available standalone on CPAN, has an insecure default TLS configuration where users must opt in to verify certificates.", + "Severity": "LOW", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://hackeriet.github.io/cpan-http-tiny-overview/", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + "https://www.openwall.com/lists/oss-security/2023/05/03/4", + "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/" + ], + "PublishedDate": "2023-04-29T00:15:00Z", + "LastModifiedDate": "2023-05-08T17:06:00Z" + }, + { + "VulnerabilityID": "CVE-2005-2541", + "PkgID": "tar@1.34+dfsg-1", + "PkgName": "tar", + "InstalledVersion": "1.34+dfsg-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2005-2541", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tar: does not properly warn the user when extracting setuid or setgid files", + "Description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V2Score": 10 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://marc.info/?l=bugtraq\u0026m=112327628230258\u0026w=2", + "https://access.redhat.com/security/cve/CVE-2005-2541", + "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + "https://www.cve.org/CVERecord?id=CVE-2005-2541" + ], + "PublishedDate": "2005-08-10T04:00:00Z", + "LastModifiedDate": "2021-06-18T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-48303", + "PkgID": "tar@1.34+dfsg-1", + "PkgName": "tar", + "InstalledVersion": "1.34+dfsg-1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-48303", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "heap buffer overflow at from_header() in list.c via specially crafted checksum", + "Description": "GNU Tar through 1.34 has a one-byte out-of-bounds read that results in use of uninitialized memory for a conditional jump. Exploitation to change the flow of control has not been demonstrated. The issue occurs in from_header in list.c via a V7 archive in which mtime has approximately 11 whitespace characters.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0959", + "https://access.redhat.com/security/cve/CVE-2022-48303", + "https://bugzilla.redhat.com/2149722", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + "https://errata.almalinux.org/9/ALSA-2023-0959.html", + "https://errata.rockylinux.org/RLSA-2023:0959", + "https://linux.oracle.com/cve/CVE-2022-48303.html", + "https://linux.oracle.com/errata/ELSA-2023-0959.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + "https://savannah.gnu.org/bugs/?62387", + "https://savannah.gnu.org/patch/?10307", + "https://ubuntu.com/security/notices/USN-5900-1", + "https://ubuntu.com/security/notices/USN-5900-2", + "https://www.cve.org/CVERecord?id=CVE-2022-48303" + ], + "PublishedDate": "2023-01-30T04:15:00Z", + "LastModifiedDate": "2023-05-30T17:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "util-linux@2.36.1-8+deb11u1", + "PkgName": "util-linux", + "InstalledVersion": "2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:3b5e91f25ce64a67644c45c771f24a33c8e5662d758e73e6edc4236e64d3c536", + "DiffID": "sha256:d745f418fc70bf8570f4b4ebefbd27fb868cda7d46deed2278b9749349b00ce2" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + } + ] + }, + { + "Target": "opt/bitnami/common/bin/gosu", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2023-27561", + "PkgName": "github.com/opencontainers/runc", + "InstalledVersion": "v1.0.1", + "FixedVersion": "1.1.5", + "Layer": { + "Digest": "sha256:ec89a260860a4668db9e2b16244d8a35ea30fff967d8e67a1aba9721cd59d7e3", + "DiffID": "sha256:b6385a973d7b4476906343069cd259795d718475350cd9c32e74b3d3a09eee4b" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-27561", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "volume mount race condition (regression of CVE-2019-19921)", + "Description": "runc through 1.1.4 has Incorrect Access Control leading to Escalation of Privileges, related to libcontainer/rootfs_linux.go. To exploit this, an attacker must be able to spawn two containers with custom volume-mount configurations, and be able to run custom images. NOTE: this issue exists because of a CVE-2019-19921 regression.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-706" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-27561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27561", + "https://gist.github.com/LiveOverflow/c937820b688922eb127fb760ce06dab9", + "https://github.com/advisories/GHSA-vpvm-3wq2-2wvm", + "https://github.com/opencontainers/runc/issues/2197#issuecomment-1437617334", + "https://github.com/opencontainers/runc/issues/3751", + "https://github.com/opencontainers/runc/pull/3785", + "https://github.com/opencontainers/runc/releases/tag/v1.1.5", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DHGVGGMKGZSJ7YO67TGGPFEHBYMS63VF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FYVE3GB4OG3BNT5DLQHYO4M5SXX33AQ5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I6BF24VCZRFTYBTT3T7HDZUOTKOTNPLZ/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-27561", + "https://ubuntu.com/security/notices/USN-6088-1", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2023-27561" + ], + "PublishedDate": "2023-03-03T19:15:00Z", + "LastModifiedDate": "2023-04-21T04:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-43784", + "PkgName": "github.com/opencontainers/runc", + "InstalledVersion": "v1.0.1", + "FixedVersion": "1.1.0", + "Layer": { + "Digest": "sha256:ec89a260860a4668db9e2b16244d8a35ea30fff967d8e67a1aba9721cd59d7e3", + "DiffID": "sha256:b6385a973d7b4476906343069cd259795d718475350cd9c32e74b3d3a09eee4b" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-43784", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "runc: integer overflow in netlink bytemsg length field allows attacker to override netlink-based container configuration", + "Description": "runc is a CLI tool for spawning and running containers on Linux according to the OCI specification. In runc, netlink is used internally as a serialization system for specifying the relevant container configuration to the `C` portion of the code (responsible for the based namespace setup of containers). In all versions of runc prior to 1.0.3, the encoder did not handle the possibility of an integer overflow in the 16-bit length field for the byte array attribute type, meaning that a large enough malicious byte array attribute could result in the length overflowing and the attribute contents being parsed as netlink messages for container configuration. This vulnerability requires the attacker to have some control over the configuration of the container and would allow the attacker to bypass the namespace restrictions of the container by simply adding their own netlink payload which disables all namespaces. The main users impacted are those who allow untrusted images with untrusted configurations to run on their machines (such as with shared cloud infrastructure). runc version 1.0.3 contains a fix for this bug. As a workaround, one may try disallowing untrusted namespace paths from your container. It should be noted that untrusted namespace paths would allow the attacker to disable namespace protections entirely even in the absence of this bug.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:L/I:L/A:L", + "V3Score": 6 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:S/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V2Score": 6, + "V3Score": 5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-43784", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=2241", + "https://github.com/advisories/GHSA-v95c-p5hm-xq8f", + "https://github.com/opencontainers/runc/commit/9c444070ec7bb83995dbc0185da68284da71c554", + "https://github.com/opencontainers/runc/commit/d72d057ba794164c3cce9451a00b72a78b25e1ae", + "https://github.com/opencontainers/runc/commit/dde509df4e28cec33b3c99c6cda3d4fd5beafc77", + "https://github.com/opencontainers/runc/commit/f50369af4b571e358f20b139eea52d612eb55eed", + "https://github.com/opencontainers/runc/security/advisories/GHSA-v95c-p5hm-xq8f", + "https://lists.debian.org/debian-lts-announce/2021/12/msg00005.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-43784", + "https://pkg.go.dev/vuln/GO-2022-0274", + "https://www.cve.org/CVERecord?id=CVE-2021-43784" + ], + "PublishedDate": "2021-12-06T18:15:00Z", + "LastModifiedDate": "2021-12-08T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29162", + "PkgName": "github.com/opencontainers/runc", + "InstalledVersion": "v1.0.1", + "FixedVersion": "1.1.2", + "Layer": { + "Digest": "sha256:ec89a260860a4668db9e2b16244d8a35ea30fff967d8e67a1aba9721cd59d7e3", + "DiffID": "sha256:b6385a973d7b4476906343069cd259795d718475350cd9c32e74b3d3a09eee4b" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29162", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "runc: incorrect handling of inheritable capabilities", + "Description": "runc is a CLI tool for spawning and running containers on Linux according to the OCI specification. A bug was found in runc prior to version 1.1.2 where `runc exec --cap` created processes with non-empty inheritable Linux process capabilities, creating an atypical Linux environment and enabling programs with inheritable file capabilities to elevate those capabilities to the permitted set during execve(2). This bug did not affect the container security sandbox as the inheritable set never contained more capabilities than were included in the container's bounding set. This bug has been fixed in runc 1.1.2. This fix changes `runc exec --cap` behavior such that the additional capabilities granted to the process being executed (as specified via `--cap` arguments) do not include inheritable capabilities. In addition, `runc spec` is changed to not set any inheritable capabilities in the created example OCI spec (`config.json`) file.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-276" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 5.9 + }, + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 4.6, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 5.6 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8090", + "https://access.redhat.com/security/cve/CVE-2022-29162", + "https://bugzilla.redhat.com/2086398", + "https://bugzilla.redhat.com/show_bug.cgi?id=2086398", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29162", + "https://errata.almalinux.org/9/ALSA-2022-8090.html", + "https://errata.rockylinux.org/RLSA-2022:8090", + "https://github.com/advisories/GHSA-f3fp-gc8g-vw66", + "https://github.com/opencontainers/runc/commit/98fe566c527479195ce3c8167136d2a555fe6b65", + "https://github.com/opencontainers/runc/commit/d04de3a9b72d7a2455c1885fc75eb36d02cd17b5", + "https://github.com/opencontainers/runc/releases/tag/v1.1.2", + "https://github.com/opencontainers/runc/security/advisories/GHSA-f3fp-gc8g-vw66", + "https://linux.oracle.com/cve/CVE-2022-29162.html", + "https://linux.oracle.com/errata/ELSA-2022-8090.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AVPZBV7ISA7QKRPTC7ZXWKMIQI2HZEBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/D77CKD3AXPMU4PMQIQI5Q74SI4JATNND/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/GPQU4YC4AAY54JDXGDQHJEYKSXXG5T2Y/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29162", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2022-29162", + "https://www.openwall.com/lists/oss-security/2022/05/12/1" + ], + "PublishedDate": "2022-05-17T21:15:00Z", + "LastModifiedDate": "2023-03-27T18:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-28642", + "PkgName": "github.com/opencontainers/runc", + "InstalledVersion": "v1.0.1", + "FixedVersion": "1.1.5", + "Layer": { + "Digest": "sha256:ec89a260860a4668db9e2b16244d8a35ea30fff967d8e67a1aba9721cd59d7e3", + "DiffID": "sha256:b6385a973d7b4476906343069cd259795d718475350cd9c32e74b3d3a09eee4b" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-28642", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "AppArmor can be bypassed when `/proc` inside the container is symlinked with a specific mount configuration", + "Description": "runc is a CLI tool for spawning and running containers according to the OCI specification. It was found that AppArmor can be bypassed when `/proc` inside the container is symlinked with a specific mount configuration. This issue has been fixed in runc version 1.1.5, by prohibiting symlinked `/proc`. See PR #3785 for details. users are advised to upgrade. Users unable to upgrade should avoid using an untrusted container image.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L", + "V3Score": 6.1 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L", + "V3Score": 6.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-28642", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28642", + "https://github.com/advisories/GHSA-g2j6-57v7-gm8c", + "https://github.com/opencontainers/runc/pull/3785", + "https://github.com/opencontainers/runc/security/advisories/GHSA-g2j6-57v7-gm8c", + "https://nvd.nist.gov/vuln/detail/CVE-2023-28642", + "https://ubuntu.com/security/notices/USN-6088-1", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2023-28642" + ], + "PublishedDate": "2023-03-29T19:15:00Z", + "LastModifiedDate": "2023-04-06T17:45:00Z" + }, + { + "VulnerabilityID": "CVE-2023-25809", + "PkgName": "github.com/opencontainers/runc", + "InstalledVersion": "v1.0.1", + "FixedVersion": "1.1.5", + "Layer": { + "Digest": "sha256:ec89a260860a4668db9e2b16244d8a35ea30fff967d8e67a1aba9721cd59d7e3", + "DiffID": "sha256:b6385a973d7b4476906343069cd259795d718475350cd9c32e74b3d3a09eee4b" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-25809", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "Rootless runc makes `/sys/fs/cgroup` writable", + "Description": "runc is a CLI tool for spawning and running containers according to the OCI specification. In affected versions it was found that rootless runc makes `/sys/fs/cgroup` writable in following conditons: 1. when runc is executed inside the user namespace, and the `config.json` does not specify the cgroup namespace to be unshared (e.g.., `(docker|podman|nerdctl) run --cgroupns=host`, with Rootless Docker/Podman/nerdctl) or 2. when runc is executed outside the user namespace, and `/sys` is mounted with `rbind, ro` (e.g., `runc spec --rootless`; this condition is very rare). A container may gain the write access to user-owned cgroup hierarchy `/sys/fs/cgroup/user.slice/...` on the host . Other users's cgroup hierarchies are not affected. Users are advised to upgrade to version 1.1.5. Users unable to upgrade may unshare the cgroup namespace (`(docker|podman|nerdctl) run --cgroupns=private)`. This is the default behavior of Docker/Podman/nerdctl on cgroup v2 hosts. or add `/sys/fs/cgroup` to `maskedPaths`.", + "Severity": "LOW", + "CweIDs": [ + "CWE-281" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:N/I:N/A:L", + "V3Score": 2.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:L", + "V3Score": 6.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:N/I:N/A:L", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-25809", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-25809", + "https://github.com/advisories/GHSA-m8cg-xc2p-r3fc", + "https://github.com/opencontainers/runc/commit/0d62b950e60f6980b54fe3bafd9a9c608dc1df17", + "https://github.com/opencontainers/runc/commit/0e6b818a2b0d24fdb6697614e5c5f115bbe8e3a5 (v1.1.5)", + "https://github.com/opencontainers/runc/security/advisories/GHSA-m8cg-xc2p-r3fc", + "https://nvd.nist.gov/vuln/detail/CVE-2023-25809", + "https://ubuntu.com/security/notices/USN-6088-1", + "https://ubuntu.com/security/notices/USN-6088-2", + "https://www.cve.org/CVERecord?id=CVE-2023-25809" + ], + "PublishedDate": "2023-03-29T19:15:00Z", + "LastModifiedDate": "2023-04-06T17:41:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29526", + "PkgName": "golang.org/x/sys", + "InstalledVersion": "v0.0.0-20210817142637-7d9622a276b7", + "FixedVersion": "0.0.0-20220412211240-33da011f77ad", + "Layer": { + "Digest": "sha256:ec89a260860a4668db9e2b16244d8a35ea30fff967d8e67a1aba9721cd59d7e3", + "DiffID": "sha256:b6385a973d7b4476906343069cd259795d718475350cd9c32e74b3d3a09eee4b" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29526", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "faccessat checks wrong group", + "Description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526" + ], + "PublishedDate": "2022-06-23T17:15:00Z", + "LastModifiedDate": "2022-08-19T12:50:00Z" + } + ] + }, + { + "Target": "opt/bitnami/common/bin/wait-for-port", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-29526", + "PkgName": "golang.org/x/sys", + "InstalledVersion": "v0.0.0-20210510120138-977fb7262007", + "FixedVersion": "0.0.0-20220412211240-33da011f77ad", + "Layer": { + "Digest": "sha256:d8b78e5e3b5054cee102cd920ee2d3c6a900c2e1f14a3dafe2801065777eae61", + "DiffID": "sha256:bd7dc3170a25bb44c548244e42739d0e4b124394c2584b5e703c0482d8d8236e" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29526", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "faccessat checks wrong group", + "Description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526" + ], + "PublishedDate": "2022-06-23T17:15:00Z", + "LastModifiedDate": "2022-08-19T12:50:00Z" + } + ] + }, + { + "Target": "opt/bitnami/minio-client/bin/mc", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:a597ae4b5d8c50dd406565561dfea4d5f454d043bfd715df2a4ac838e23fd859", + "DiffID": "sha256:2f7692341c221f488ba9c9c5091bb7206957f9e5afed2f24375943ee8f1a90c5" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41721", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.1.1-0.20221104162952-702349b0e862", + "Layer": { + "Digest": "sha256:a597ae4b5d8c50dd406565561dfea4d5f454d043bfd715df2a4ac838e23fd859", + "DiffID": "sha256:2f7692341c221f488ba9c9c5091bb7206957f9e5afed2f24375943ee8f1a90c5" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41721", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "request smuggling", + "Description": "A request smuggling attack is possible when using MaxBytesHandler. When using MaxBytesHandler, the body of an HTTP request is not fully consumed. When the server attempts to read HTTP2 frames from the connection, it will instead be reading the body of the HTTP request, which could be attacker-manipulated to represent arbitrary HTTP2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-444" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41721", + "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + "https://go.dev/cl/447396", + "https://go.dev/issue/56352", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + "https://pkg.go.dev/vuln/GO-2023-1495", + "https://www.cve.org/CVERecord?id=CVE-2022-41721" + ], + "PublishedDate": "2023-01-13T23:15:00Z", + "LastModifiedDate": "2023-01-24T17:25:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:a597ae4b5d8c50dd406565561dfea4d5f454d043bfd715df2a4ac838e23fd859", + "DiffID": "sha256:2f7692341c221f488ba9c9c5091bb7206957f9e5afed2f24375943ee8f1a90c5" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:a597ae4b5d8c50dd406565561dfea4d5f454d043bfd715df2a4ac838e23fd859", + "DiffID": "sha256:2f7692341c221f488ba9c9c5091bb7206957f9e5afed2f24375943ee8f1a90c5" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.7", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:a597ae4b5d8c50dd406565561dfea4d5f454d043bfd715df2a4ac838e23fd859", + "DiffID": "sha256:2f7692341c221f488ba9c9c5091bb7206957f9e5afed2f24375943ee8f1a90c5" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + } + ] + }, + { + "Target": "opt/bitnami/minio/bin/minio", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-2835", + "PkgName": "github.com/coredns/coredns", + "InstalledVersion": "v1.9.3", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2835", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "coreDNS: DNS Redirection of Internal Services", + "Description": "A flaw was found in coreDNS. This flaw allows a malicious user to reroute internal calls to some internal services that were accessed by the FQDN in a format of \u003cservice\u003e.\u003cnamespace\u003e.svc.", + "Severity": "MEDIUM", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 4.4 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", + "V3Score": 4.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L", + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-2835", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118542", + "https://github.com/advisories/GHSA-ch7v-37xg-75ph", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2835", + "https://www.cve.org/CVERecord?id=CVE-2022-2835" + ], + "PublishedDate": "2023-03-03T16:15:00Z", + "LastModifiedDate": "2023-03-14T15:47:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2837", + "PkgName": "github.com/coredns/coredns", + "InstalledVersion": "v1.9.3", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2837", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "DNS Redirection of Top-Level Domains", + "Description": "A flaw was found in coreDNS. This flaw allows a malicious user to redirect traffic intended for external top-level domains (TLD) to a pod they control by creating projects and namespaces that match the TLD.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-601" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", + "V3Score": 6.1 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 4.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-2837", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118543", + "https://github.com/advisories/GHSA-h828-v5pv-33qx", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2837", + "https://www.cve.org/CVERecord?id=CVE-2022-2837" + ], + "PublishedDate": "2023-03-03T16:15:00Z", + "LastModifiedDate": "2023-03-14T15:32:00Z" + }, + { + "VulnerabilityID": "CVE-2023-33955", + "PkgName": "github.com/minio/console", + "InstalledVersion": "v0.20.0", + "FixedVersion": "0.28.0", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-33955", + "DataSource": { + "ID": "ghsa", + "Name": "GitHub Security Advisory Go", + "URL": "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago" + }, + "Title": "Minio console object names with RIGHT-TO-LEFT OVERRIDE unicode character can be exploited", + "Description": "Minio Console is the UI for MinIO Object Storage. Unicode RIGHT-TO-LEFT OVERRIDE characters can be used to mask the original filename. This issue has been patched in version 0.28.0.\n\n", + "Severity": "MEDIUM", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 4.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://github.com/advisories/GHSA-jv3f-7m33-qp65", + "https://github.com/minio/console/commit/17e791afb90c9ad27c65f63c6be14f2f6a3a9d60", + "https://github.com/minio/console/releases/tag/v0.28.0", + "https://github.com/minio/console/security/advisories/GHSA-jv3f-7m33-qp65", + "https://nvd.nist.gov/vuln/detail/CVE-2023-33955" + ], + "PublishedDate": "2023-05-30T07:15:00Z", + "LastModifiedDate": "2023-06-05T16:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41721", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.1.1-0.20221104162952-702349b0e862", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41721", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "request smuggling", + "Description": "A request smuggling attack is possible when using MaxBytesHandler. When using MaxBytesHandler, the body of an HTTP request is not fully consumed. When the server attempts to read HTTP2 frames from the connection, it will instead be reading the body of the HTTP request, which could be attacker-manipulated to represent arbitrary HTTP2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-444" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41721", + "https://github.com/advisories/GHSA-fxg5-wq6x-vr4w", + "https://go.dev/cl/447396", + "https://go.dev/issue/56352", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41721", + "https://pkg.go.dev/vuln/GO-2023-1495", + "https://www.cve.org/CVERecord?id=CVE-2022-41721" + ], + "PublishedDate": "2023-01-13T23:15:00Z", + "LastModifiedDate": "2023-01-24T17:25:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220722155237-a158d28d115b", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.7", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:8d8525abae23458fd3409bbd0e9b366ae660093dec9413a240c8059ae0fe7a1b", + "DiffID": "sha256:fe798df9590cc2ae0c078d08716368e5dd3b5c9dd47c1303282866079173ec8c" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + } + ] + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "Deployment", + "Name": "securecodebox-operator-minio", + "Results": [ + { + "Target": "Deployment/securecodebox-operator-minio", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 131, + "Failures": 10, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 245, + "EndLine": 308, + "Code": { + "Lines": [ + { + "Number": 245, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 246, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 247, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 248, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 249, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 250, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 251, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 254, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 245, + "EndLine": 308, + "Code": { + "Lines": [ + { + "Number": 245, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 246, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 247, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 248, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 249, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 250, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 251, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 254, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 245, + "EndLine": 308, + "Code": { + "Lines": [ + { + "Number": 245, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 246, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 247, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 248, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 249, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 250, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 251, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 254, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 245, + "EndLine": 308, + "Code": { + "Lines": [ + { + "Number": 245, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 246, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 247, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 248, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 249, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 250, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 251, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 254, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV015", + "AVDID": "AVD-KSV-0015", + "Title": "CPU requests not specified", + "Description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'resources.requests.cpu'", + "Namespace": "builtin.kubernetes.KSV015", + "Query": "data.builtin.kubernetes.KSV015.deny", + "Resolution": "Set 'containers[].resources.requests.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv015", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 245, + "EndLine": 308, + "Code": { + "Lines": [ + { + "Number": 245, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 246, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 247, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 248, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 249, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 250, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 251, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 254, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 245, + "EndLine": 308, + "Code": { + "Lines": [ + { + "Number": 245, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 246, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 247, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 248, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 249, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 250, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 251, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 254, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 245, + "EndLine": 308, + "Code": { + "Lines": [ + { + "Number": 245, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 246, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 247, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 248, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 249, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 250, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 251, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 254, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'minio' of Deployment 'securecodebox-operator-minio' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 245, + "EndLine": 308, + "Code": { + "Lines": [ + { + "Number": 245, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 246, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 247, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 248, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 249, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 250, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 251, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 254, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 245, + "EndLine": 308, + "Code": { + "Lines": [ + { + "Number": 245, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 246, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 247, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 248, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 249, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 250, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 251, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 254, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 245, + "EndLine": 308, + "Code": { + "Lines": [ + { + "Number": 245, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 246, + "Content": " - name: BITNAMI_DEBUG", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 247, + "Content": " value: \"false\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 248, + "Content": " - name: MINIO_SCHEME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 249, + "Content": " value: http", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 250, + "Content": " - name: MINIO_FORCE_NEW_KEYS", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 251, + "Content": " value: \"no\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 252, + "Content": " - name: MINIO_ROOT_USER", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 253, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 254, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "default", + "Kind": "Service", + "Name": "kubernetes", + "Results": [ + { + "Target": "Service/kubernetes", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Service", + "Name": "kube-dns", + "Results": [ + { + "Target": "Service/kube-dns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "etcd-kind-control-plane", + "Results": [ + { + "Target": "k8s.gcr.io/etcd:3.5.3-0 (debian 11.3)", + "Class": "os-pkgs", + "Type": "debian" + }, + { + "Target": "usr/local/bin/etcd", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-27191", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20220131195533-30dcbda58838", + "FixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27191", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "crash in a golang.org/x/crypto/ssh server", + "Description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191" + ], + "PublishedDate": "2022-03-18T07:15:00Z", + "LastModifiedDate": "2022-10-26T17:52:00Z" + }, + { + "VulnerabilityID": "CVE-2021-44716", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.0.0-20211209124913-491a49abca63", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-44716", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: net/http: limit growth of header canonicalization cache", + "Description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/go/issues/50058", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716" + ], + "PublishedDate": "2022-01-01T05:15:00Z", + "LastModifiedDate": "2023-04-20T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29526", + "PkgName": "golang.org/x/sys", + "InstalledVersion": "v0.0.0-20210615035016-665e8c7367d1", + "FixedVersion": "0.0.0-20220412211240-33da011f77ad", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29526", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "faccessat checks wrong group", + "Description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526" + ], + "PublishedDate": "2022-06-23T17:15:00Z", + "LastModifiedDate": "2022-08-19T12:50:00Z" + }, + { + "VulnerabilityID": "CVE-2021-38561", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.6", + "FixedVersion": "0.3.7", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-38561", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "Description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561" + ], + "PublishedDate": "2022-12-26T06:15:00Z", + "LastModifiedDate": "2023-01-05T04:52:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.6", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + } + ] + }, + { + "Target": "usr/local/bin/etcd-3.5.3", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-27191", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20220131195533-30dcbda58838", + "FixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27191", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "crash in a golang.org/x/crypto/ssh server", + "Description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191" + ], + "PublishedDate": "2022-03-18T07:15:00Z", + "LastModifiedDate": "2022-10-26T17:52:00Z" + }, + { + "VulnerabilityID": "CVE-2021-44716", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.0.0-20211209124913-491a49abca63", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-44716", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: net/http: limit growth of header canonicalization cache", + "Description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/go/issues/50058", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716" + ], + "PublishedDate": "2022-01-01T05:15:00Z", + "LastModifiedDate": "2023-04-20T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29526", + "PkgName": "golang.org/x/sys", + "InstalledVersion": "v0.0.0-20210615035016-665e8c7367d1", + "FixedVersion": "0.0.0-20220412211240-33da011f77ad", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29526", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "faccessat checks wrong group", + "Description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526" + ], + "PublishedDate": "2022-06-23T17:15:00Z", + "LastModifiedDate": "2022-08-19T12:50:00Z" + }, + { + "VulnerabilityID": "CVE-2021-38561", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.6", + "FixedVersion": "0.3.7", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-38561", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "Description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561" + ], + "PublishedDate": "2022-12-26T06:15:00Z", + "LastModifiedDate": "2023-01-05T04:52:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.6", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + } + ] + }, + { + "Target": "usr/local/bin/etcdctl", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-27191", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20220131195533-30dcbda58838", + "FixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27191", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "crash in a golang.org/x/crypto/ssh server", + "Description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191" + ], + "PublishedDate": "2022-03-18T07:15:00Z", + "LastModifiedDate": "2022-10-26T17:52:00Z" + }, + { + "VulnerabilityID": "CVE-2021-44716", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.0.0-20211209124913-491a49abca63", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-44716", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: net/http: limit growth of header canonicalization cache", + "Description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/go/issues/50058", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716" + ], + "PublishedDate": "2022-01-01T05:15:00Z", + "LastModifiedDate": "2023-04-20T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29526", + "PkgName": "golang.org/x/sys", + "InstalledVersion": "v0.0.0-20210615035016-665e8c7367d1", + "FixedVersion": "0.0.0-20220412211240-33da011f77ad", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29526", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "faccessat checks wrong group", + "Description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526" + ], + "PublishedDate": "2022-06-23T17:15:00Z", + "LastModifiedDate": "2022-08-19T12:50:00Z" + }, + { + "VulnerabilityID": "CVE-2021-38561", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.6", + "FixedVersion": "0.3.7", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-38561", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "Description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561" + ], + "PublishedDate": "2022-12-26T06:15:00Z", + "LastModifiedDate": "2023-01-05T04:52:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.6", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + } + ] + }, + { + "Target": "usr/local/bin/etcdctl-3.5.3", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-27191", + "PkgName": "golang.org/x/crypto", + "InstalledVersion": "v0.0.0-20220131195533-30dcbda58838", + "FixedVersion": "0.0.0-20220314234659-1baeb1ce4c0b", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27191", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "crash in a golang.org/x/crypto/ssh server", + "Description": "The golang.org/x/crypto/ssh package before 0.0.0-20220314234659-1baeb1ce4c0b for Go allows an attacker to crash a server in certain circumstances involving AddHostKey.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8008", + "https://access.redhat.com/security/cve/CVE-2022-27191", + "https://bugzilla.redhat.com/1939485", + "https://bugzilla.redhat.com/1989564", + "https://bugzilla.redhat.com/1989570", + "https://bugzilla.redhat.com/1989575", + "https://bugzilla.redhat.com/2064702", + "https://bugzilla.redhat.com/2121445", + "https://bugzilla.redhat.com/2121453", + "https://errata.almalinux.org/9/ALSA-2022-8008.html", + "https://github.com/advisories/GHSA-8c26-wmh5-6g9v", + "https://go.dev/cl/392355", + "https://go.googlesource.com/crypto/+/1baeb1ce4c0b006eff0f294c47cb7617598dfb3d", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s", + "https://groups.google.com/g/golang-announce/c/-cp44ypCT5s/m/wmegxkLiAQAJ", + "https://linux.oracle.com/cve/CVE-2022-27191.html", + "https://linux.oracle.com/errata/ELSA-2022-8008.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DLUJZV3HBP56ADXU6QH2V7RNYUPMVBXQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/EZ3S7LB65N54HXXBCB67P4TTOHTNPP5O/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/HHGBEGJ54DZZGTXFUQNS7ZIG3E624YAF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/J5WPM42UR6XIBQNQPNQHM32X7S4LJTRX/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/QTFOIDHQRGNI4P6LYN6ILH5G443RYYKB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/YHYRQB7TRMHDB3NEHW5XBRG7PPMUTPGV/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZFUNHFHQVJSADNH7EZ3B53CYDZVEEPBP/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZQNPPQWSTP2IX7SHE6TS4SP4EVMI5EZK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27191", + "https://pkg.go.dev/vuln/GO-2021-0356", + "https://raw.githubusercontent.com/golang/vulndb/df2d3d326300e2ae768f00351ffa96cc2c56cf54/reports/GO-2021-0356.yaml", + "https://security.netapp.com/advisory/ntap-20220429-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-27191" + ], + "PublishedDate": "2022-03-18T07:15:00Z", + "LastModifiedDate": "2022-10-26T17:52:00Z" + }, + { + "VulnerabilityID": "CVE-2021-44716", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.0.0-20211209124913-491a49abca63", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-44716", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "golang: net/http: limit growth of header canonicalization cache", + "Description": "net/http in Go before 1.16.12 and 1.17.x before 1.17.5 allows uncontrolled memory consumption in the header canonicalization cache via HTTP/2 requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-44716", + "https://cert-portal.siemens.com/productcert/pdf/ssa-744259.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716", + "https://github.com/advisories/GHSA-vc3p-29h2-gpcp", + "https://github.com/golang/go/commit/48d948963c5ce7add72af5665a871caff6c1d35a (go1.17.5)", + "https://github.com/golang/go/issues/50058", + "https://github.com/golang/net/commit/491a49abca63de5e07ef554052d180a1b5fe2d70", + "https://go.dev/cl/369794", + "https://go.dev/issue/50058", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k", + "https://groups.google.com/g/golang-announce/c/hcmEScgc00k/m/ZWnOjeY4CQAJ", + "https://linux.oracle.com/cve/CVE-2021-44716.html", + "https://linux.oracle.com/errata/ELSA-2022-0001.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00016.html", + "https://lists.debian.org/debian-lts-announce/2022/01/msg00017.html", + "https://lists.debian.org/debian-lts-announce/2023/04/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-44716", + "https://pkg.go.dev/vuln/GO-2022-0288", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220121-0002/", + "https://www.cve.org/CVERecord?id=CVE-2021-44716" + ], + "PublishedDate": "2022-01-01T05:15:00Z", + "LastModifiedDate": "2023-04-20T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20211112202133-69e39bad7dc2", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29526", + "PkgName": "golang.org/x/sys", + "InstalledVersion": "v0.0.0-20210615035016-665e8c7367d1", + "FixedVersion": "0.0.0-20220412211240-33da011f77ad", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29526", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "faccessat checks wrong group", + "Description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526" + ], + "PublishedDate": "2022-06-23T17:15:00Z", + "LastModifiedDate": "2022-08-19T12:50:00Z" + }, + { + "VulnerabilityID": "CVE-2021-38561", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.6", + "FixedVersion": "0.3.7", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-38561", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "out-of-bounds read in golang.org/x/text/language leads to DoS", + "Description": "golang.org/x/text/language in golang.org/x/text before 0.3.7 can panic with an out-of-bounds read during BCP 47 language tag parsing. Index calculation is mishandled. If parsing untrusted user input, this can be used as a vector for a denial-of-service attack.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-38561", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38561", + "https://deps.dev/advisory/OSV/GO-2021-0113", + "https://github.com/advisories/GHSA-ppp9-7jff-5vj2", + "https://go.dev/cl/340830", + "https://go.googlesource.com/text/+/383b2e75a7a4198c42f8f87833eefb772868a56f", + "https://groups.google.com/g/golang-announce", + "https://nvd.nist.gov/vuln/detail/CVE-2021-38561", + "https://pkg.go.dev/golang.org/x/text/language", + "https://pkg.go.dev/vuln/GO-2021-0113", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2021-38561" + ], + "PublishedDate": "2022-12-26T06:15:00Z", + "LastModifiedDate": "2023-01-05T04:52:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.6", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:11ade7be27172de6033c627d9b75b13d960b0f19ee37f2b9ebb90ca2fab0d3b8", + "DiffID": "sha256:9987e1d233760f4dde45996dc18dd2d1bbb95f4eb5a4b65461e49ba3eb668fc9" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Pod", + "Name": "etcd-kind-control-plane", + "Results": [ + { + "Target": "Pod/etcd-kind-control-plane", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 130, + "Failures": 11, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 230, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - --experimental-initial-corrupt-check=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 230, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - --experimental-initial-corrupt-check=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV009", + "AVDID": "AVD-KSV-0009", + "Title": "Access to host network", + "Description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "Message": "Pod 'etcd-kind-control-plane' should not set 'spec.template.spec.hostNetwork' to true", + "Namespace": "builtin.kubernetes.KSV009", + "Query": "data.builtin.kubernetes.KSV009.deny", + "Resolution": "Do not set 'spec.template.spec.hostNetwork' to true.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv009", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 174, + "EndLine": 255, + "Code": { + "Lines": [ + { + "Number": 174, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 175, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - --experimental-initial-corrupt-check=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 183, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 230, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - --experimental-initial-corrupt-check=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 230, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - --experimental-initial-corrupt-check=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 230, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - --experimental-initial-corrupt-check=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 230, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - --experimental-initial-corrupt-check=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 230, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - --experimental-initial-corrupt-check=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'etcd' of Pod 'etcd-kind-control-plane' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 230, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - --experimental-initial-corrupt-check=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV023", + "AVDID": "AVD-KSV-0023", + "Title": "hostPath volumes mounted", + "Description": "HostPath volumes must be forbidden.", + "Message": "Pod 'etcd-kind-control-plane' should not set 'spec.template.volumes.hostPath'", + "Namespace": "builtin.kubernetes.KSV023", + "Query": "data.builtin.kubernetes.KSV023.deny", + "Resolution": "Do not set 'spec.volumes[*].hostPath'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv023", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 174, + "EndLine": 255, + "Code": { + "Lines": [ + { + "Number": 174, + "Content": " containers:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 175, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - --experimental-initial-corrupt-check=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 183, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 175, + "EndLine": 230, + "Code": { + "Lines": [ + { + "Number": 175, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 176, + "Content": " - etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - --advertise-client-urls=https://172.18.0.2:2379", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - --cert-file=/etc/kubernetes/pki/etcd/server.crt", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " - --client-cert-auth=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " - --data-dir=/var/lib/etcd", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 181, + "Content": " - --experimental-initial-corrupt-check=true", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 182, + "Content": " - --initial-advertise-peer-urls=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 183, + "Content": " - --initial-cluster=kind-control-plane=https://172.18.0.2:2380", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 184, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "Service", + "Name": "controller-manager-metrics-service", + "Results": [ + { + "Target": "Service/controller-manager-metrics-service", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "Service", + "Name": "securecodebox-operator-minio", + "Results": [ + { + "Target": "Service/securecodebox-operator-minio", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "DaemonSet", + "Name": "kube-proxy", + "Results": [ + { + "Target": "k8s.gcr.io/kube-proxy:v1.24.0 (debian 11.3)", + "Class": "os-pkgs", + "Type": "debian", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2011-3374", + "PkgID": "apt@2.2.4", + "PkgName": "apt", + "InstalledVersion": "2.2.4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "PublishedDate": "2019-11-26T00:15:00Z", + "LastModifiedDate": "2021-02-09T16:08:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "bsdutils@1:2.36.1-8+deb11u1", + "PkgName": "bsdutils", + "InstalledVersion": "1:2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2016-2781", + "PkgID": "coreutils@8.32-4+b1", + "PkgName": "coreutils", + "InstalledVersion": "8.32-4+b1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-2781", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "coreutils: Non-privileged session can escape to the parent session in chroot", + "Description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "Severity": "LOW", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:N", + "V2Score": 2.1, + "V3Score": 6.5 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H", + "V2Score": 6.2, + "V3Score": 8.6 + } + }, + "References": [ + "http://seclists.org/oss-sec/2016/q1/452", + "http://www.openwall.com/lists/oss-security/2016/02/28/2", + "http://www.openwall.com/lists/oss-security/2016/02/28/3", + "https://access.redhat.com/security/cve/CVE-2016-2781", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lore.kernel.org/patchwork/patch/793178/", + "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + "https://www.cve.org/CVERecord?id=CVE-2016-2781" + ], + "PublishedDate": "2017-02-07T15:59:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-18018", + "PkgID": "coreutils@8.32-4+b1", + "PkgName": "coreutils", + "InstalledVersion": "8.32-4+b1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-18018", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "coreutils: race condition vulnerability in chown and chgrp", + "Description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX \"-R -L\" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "Severity": "LOW", + "CweIDs": [ + "CWE-362" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 1.9, + "V3Score": 4.7 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:R/S:U/C:L/I:L/A:L", + "V3Score": 4.2 + } + }, + "References": [ + "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + "https://access.redhat.com/security/cve/CVE-2017-18018", + "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + "https://www.cve.org/CVERecord?id=CVE-2017-18018" + ], + "PublishedDate": "2018-01-04T04:29:00Z", + "LastModifiedDate": "2018-01-19T15:46:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1664", + "VendorIDs": [ + "DSA-5147-1" + ], + "PkgID": "dpkg@1.20.9", + "PkgName": "dpkg", + "InstalledVersion": "1.20.9", + "FixedVersion": "1.20.10", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1664", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dpkg::Source::Archive in dpkg, the Debian package management system, b ...", + "Description": "Dpkg::Source::Archive in dpkg, the Debian package management system, before version 1.21.8, 1.20.10, 1.19.8, 1.18.26 is prone to a directory traversal vulnerability. When extracting untrusted source packages in v2 and v3 source package formats that include a debian.tar, the in-place extraction can lead to directory traversal situations on specially crafted orig.tar and debian.tar tarballs.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-22" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1664", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f23dddc17f69c9598477098c7fb9936e15fa495", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=58814cacee39c4ce9e2cd0e3a3b9b57ad437eff5", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=7a6c03cb34d4a09f35df2f10779cbf1b70a5200b", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=faa4c92debe45412bfcf8a44f26e827800bb24be", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00033.html", + "https://lists.debian.org/debian-security-announce/2022/msg00115.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1664", + "https://security.netapp.com/advisory/ntap-20221007-0002/", + "https://ubuntu.com/security/notices/USN-5446-1", + "https://ubuntu.com/security/notices/USN-5446-2" + ], + "PublishedDate": "2022-05-26T14:15:00Z", + "LastModifiedDate": "2022-12-03T02:19:00Z" + }, + { + "VulnerabilityID": "CVE-2022-34903", + "VendorIDs": [ + "DSA-5174-1" + ], + "PkgID": "gpgv@2.2.27-2+deb11u1", + "PkgName": "gpgv", + "InstalledVersion": "2.2.27-2+deb11u1", + "FixedVersion": "2.2.27-2+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-34903", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Signature spoofing via status line injection", + "Description": "GnuPG through 2.3.6, in unusual situations where an attacker possesses any secret-key information from a victim's keyring and other constraints (e.g., use of GPGME) are met, allows signature forgery via injection into the status line.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:N", + "V2Score": 5.8, + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2022/07/02/1", + "https://access.redhat.com/errata/RHSA-2022:6602", + "https://access.redhat.com/security/cve/CVE-2022-34903", + "https://bugs.debian.org/1014157", + "https://bugzilla.redhat.com/2102868", + "https://bugzilla.redhat.com/show_bug.cgi?id=2102868", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34903", + "https://dev.gnupg.org/T6027", + "https://errata.almalinux.org/9/ALSA-2022-6602.html", + "https://errata.rockylinux.org/RLSA-2022:6602", + "https://linux.oracle.com/cve/CVE-2022-34903.html", + "https://linux.oracle.com/errata/ELSA-2022-6602.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-34903", + "https://security.netapp.com/advisory/ntap-20220826-0005/", + "https://ubuntu.com/security/notices/USN-5503-1", + "https://ubuntu.com/security/notices/USN-5503-2", + "https://www.cve.org/CVERecord?id=CVE-2022-34903", + "https://www.debian.org/security/2022/dsa-5174", + "https://www.openwall.com/lists/oss-security/2022/06/30/1" + ], + "PublishedDate": "2022-07-01T22:15:00Z", + "LastModifiedDate": "2022-09-09T20:40:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3219", + "PkgID": "gpgv@2.2.27-2+deb11u1", + "PkgName": "gpgv", + "InstalledVersion": "2.2.27-2+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3219", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "denial of service issue (resource consumption) using compressed packets", + "Description": "GnuPG can be made to spin on a relatively small input by (for example) crafting a public key with thousands of signatures attached, compressed down to just a few KB.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-3219", + "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + "https://dev.gnupg.org/D556", + "https://dev.gnupg.org/T5993", + "https://marc.info/?l=oss-security\u0026m=165696590211434\u0026w=4", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + "https://security.netapp.com/advisory/ntap-20230324-0001/", + "https://www.cve.org/CVERecord?id=CVE-2022-3219" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-05-26T16:31:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1271", + "VendorIDs": [ + "DSA-5122-1" + ], + "PkgID": "gzip@1.10-4", + "PkgName": "gzip", + "InstalledVersion": "1.10-4", + "FixedVersion": "1.10-4+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1271", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "arbitrary-file-write vulnerability", + "Description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8" + ], + "PublishedDate": "2022-08-31T16:15:00Z", + "LastModifiedDate": "2022-10-07T14:14:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "iptables@1.8.7-1", + "PkgName": "iptables", + "InstalledVersion": "1.8.7-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2011-3374", + "PkgID": "libapt-pkg6.0@2.2.4", + "PkgName": "libapt-pkg6.0", + "InstalledVersion": "2.2.4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "PublishedDate": "2019-11-26T00:15:00Z", + "LastModifiedDate": "2021-02-09T16:08:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3999", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "FixedVersion": "2.31-13+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3999", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "Description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2023-02-12T23:43:00Z" + }, + { + "VulnerabilityID": "CVE-2010-4756", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "Severity": "LOW", + "CweIDs": [ + "CWE-399" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V2Score": 4 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V2Score": 5 + } + }, + "References": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756" + ], + "PublishedDate": "2011-03-02T20:00:00Z", + "LastModifiedDate": "2021-09-01T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-20796", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796" + ], + "PublishedDate": "2019-02-26T02:29:00Z", + "LastModifiedDate": "2019-11-05T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010022", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack guard protection bypass", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2021-06-10T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010023", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "Description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010024", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: ASLR bypass using cache of thread stack and heap", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-200" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010025", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: information disclosure of heap addresses of pthread_created thread", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-330" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9192", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192" + ], + "PublishedDate": "2019-02-26T18:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3999", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "FixedVersion": "2.31-13+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3999", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "Description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2023-02-12T23:43:00Z" + }, + { + "VulnerabilityID": "CVE-2010-4756", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "Severity": "LOW", + "CweIDs": [ + "CWE-399" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V2Score": 4 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V2Score": 5 + } + }, + "References": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756" + ], + "PublishedDate": "2011-03-02T20:00:00Z", + "LastModifiedDate": "2021-09-01T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-20796", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796" + ], + "PublishedDate": "2019-02-26T02:29:00Z", + "LastModifiedDate": "2019-11-05T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010022", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack guard protection bypass", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2021-06-10T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010023", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "Description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010024", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: ASLR bypass using cache of thread stack and heap", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-200" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010025", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: information disclosure of heap addresses of pthread_created thread", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-330" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9192", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192" + ], + "PublishedDate": "2019-02-26T18:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1304", + "PkgID": "libcom-err2@1.46.2-2", + "PkgName": "libcom-err2", + "InstalledVersion": "1.46.2-2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1304", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "e2fsprogs: out-of-bounds read/write via crafted filesystem", + "Description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125", + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 5.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8361", + "https://access.redhat.com/security/cve/CVE-2022-1304", + "https://bugzilla.redhat.com/2069726", + "https://bugzilla.redhat.com/show_bug.cgi?id=2069726", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1304", + "https://errata.almalinux.org/9/ALSA-2022-8361.html", + "https://errata.rockylinux.org/RLSA-2022:8361", + "https://linux.oracle.com/cve/CVE-2022-1304.html", + "https://linux.oracle.com/errata/ELSA-2022-8361.html", + "https://marc.info/?l=linux-ext4\u0026m=165056234501732\u0026w=2", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1304", + "https://ubuntu.com/security/notices/USN-5464-1", + "https://www.cve.org/CVERecord?id=CVE-2022-1304" + ], + "PublishedDate": "2022-04-14T21:15:00Z", + "LastModifiedDate": "2023-02-12T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-8457", + "PkgID": "libdb5.3@5.3.28+dfsg1-0.8", + "PkgName": "libdb5.3", + "InstalledVersion": "5.3.28+dfsg1-0.8", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-8457", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "sqlite: heap out-of-bound read in function rtreenode()", + "Description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + "https://access.redhat.com/security/cve/CVE-2019-8457", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://linux.oracle.com/cve/CVE-2019-8457.html", + "https://linux.oracle.com/errata/ELSA-2020-1810.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + "https://security.netapp.com/advisory/ntap-20190606-0002/", + "https://ubuntu.com/security/notices/USN-4004-1", + "https://ubuntu.com/security/notices/USN-4004-2", + "https://ubuntu.com/security/notices/USN-4019-1", + "https://ubuntu.com/security/notices/USN-4019-2", + "https://usn.ubuntu.com/4004-1/", + "https://usn.ubuntu.com/4004-2/", + "https://usn.ubuntu.com/4019-1/", + "https://usn.ubuntu.com/4019-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-8457", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.sqlite.org/releaselog/3_28_0.html", + "https://www.sqlite.org/src/info/90acdbfce9c08858" + ], + "PublishedDate": "2019-05-30T16:29:00Z", + "LastModifiedDate": "2021-07-31T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33560", + "PkgID": "libgcrypt20@1.8.7-6", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.7-6", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33560", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm", + "Description": "Libgcrypt before 1.8.8 and 1.9.x before 1.9.3 mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm, and the window size is not chosen appropriately. This, for example, affects use of ElGamal in OpenPGP.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + "https://access.redhat.com/security/cve/CVE-2021-33560", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + "https://dev.gnupg.org/T5305", + "https://dev.gnupg.org/T5328", + "https://dev.gnupg.org/T5466", + "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2021-4409.html", + "https://linux.oracle.com/cve/CVE-2021-33560.html", + "https://linux.oracle.com/errata/ELSA-2022-9263.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33560", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-06-08T11:15:00Z", + "LastModifiedDate": "2022-12-07T01:20:00Z" + }, + { + "VulnerabilityID": "CVE-2018-6829", + "PkgID": "libgcrypt20@1.8.7-6", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.7-6", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6829", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: ElGamal implementation doesn't have semantic security due to incorrectly encoded plaintexts possibly allowing to obtain sensitive information", + "Description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-6829", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + "https://www.cve.org/CVERecord?id=CVE-2018-6829", + "https://www.oracle.com/security-alerts/cpujan2020.html" + ], + "PublishedDate": "2018-02-07T23:29:00Z", + "LastModifiedDate": "2020-01-15T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2509", + "VendorIDs": [ + "DSA-5203-1" + ], + "PkgID": "libgnutls30@3.7.1-5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.7.1-5", + "FixedVersion": "3.7.1-5+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2509", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Double free during gnutls_pkcs7_verify", + "Description": "A vulnerability found in gnutls. This security flaw happens because of a double free error occurs during verification of pkcs7 signatures in gnutls_pkcs7_verify function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6854", + "https://access.redhat.com/security/cve/CVE-2022-2509", + "https://bugzilla.redhat.com/2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2076626", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108635", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2119770", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2509", + "https://errata.almalinux.org/9/ALSA-2022-6854.html", + "https://errata.rockylinux.org/RLSA-2022:6854", + "https://gnutls.org/security-new.html (GNUTLS-SA-2022-07-07)", + "https://gnutls.org/security-new.html#GNUTLS-SA-2022-07-07", + "https://linux.oracle.com/cve/CVE-2022-2509.html", + "https://linux.oracle.com/errata/ELSA-2022-7105.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00002.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6FL27JS3VM74YEQU7PGB62USO3KSBYZX/", + "https://lists.gnupg.org/pipermail/gnutls-help/2022-July/004746.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2509", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2509", + "https://www.debian.org/security/2022/dsa-5203" + ], + "PublishedDate": "2022-08-01T14:15:00Z", + "LastModifiedDate": "2022-08-19T12:10:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0361", + "VendorIDs": [ + "DSA-5349-1" + ], + "PkgID": "libgnutls30@3.7.1-5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.7.1-5", + "FixedVersion": "3.7.1-5+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0361", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing side-channel in the TLS RSA key exchange code", + "Description": "A timing side-channel in the handling of RSA ClientKeyExchange messages was discovered in GnuTLS. This side-channel can be sufficient to recover the key encrypted in the RSA ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption the attacker would need to send a large amount of specially crafted messages to the vulnerable server. By recovering the secret from the ClientKeyExchange message, the attacker would be able to decrypt the application data exchanged over that connection.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:1141", + "https://access.redhat.com/security/cve/CVE-2023-0361", + "https://bugzilla.redhat.com/2162596", + "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + "https://errata.almalinux.org/9/ALSA-2023-1141.html", + "https://errata.rockylinux.org/RLSA-2023:1569", + "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + "https://gitlab.com/gnutls/gnutls/-/issues/1050", + "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + "https://linux.oracle.com/cve/CVE-2023-0361.html", + "https://linux.oracle.com/errata/ELSA-2023-1569.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + "https://security.netapp.com/advisory/ntap-20230324-0005/", + "https://ubuntu.com/security/notices/USN-5901-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0361" + ], + "PublishedDate": "2023-02-15T18:15:00Z", + "LastModifiedDate": "2023-05-23T17:22:00Z" + }, + { + "VulnerabilityID": "CVE-2021-4209", + "PkgID": "libgnutls30@3.7.1-5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.7.1-5", + "FixedVersion": "3.7.1-5+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-4209", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "GnuTLS: Null pointer dereference in MD_UPDATE", + "Description": "A NULL pointer dereference flaw was found in GnuTLS. As Nettle's hash update functions internally call memcpy, providing zero-length input may cause undefined behavior. This flaw leads to a denial of service after authentication in rare circumstances.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-4209", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044156", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-4209", + "https://gitlab.com/gnutls/gnutls/-/commit/3db352734472d851318944db13be73da61300568", + "https://gitlab.com/gnutls/gnutls/-/issues/1306", + "https://gitlab.com/gnutls/gnutls/-/merge_requests/1503", + "https://nvd.nist.gov/vuln/detail/CVE-2021-4209", + "https://security.netapp.com/advisory/ntap-20220915-0005/", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://ubuntu.com/security/notices/USN-5750-1", + "https://www.cve.org/CVERecord?id=CVE-2021-4209" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2022-10-27T16:57:00Z" + }, + { + "VulnerabilityID": "CVE-2011-3389", + "PkgID": "libgnutls30@3.7.1-5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.7.1-5", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3389", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)", + "Description": "The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a \"BEAST\" attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V2Score": 4.3 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V2Score": 4.3 + } + }, + "References": [ + "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + "http://curl.haxx.se/docs/adv_20120124B.html", + "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + "http://ekoparty.org/2011/juliano-rizzo.php", + "http://eprint.iacr.org/2004/111", + "http://eprint.iacr.org/2006/136", + "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + "http://marc.info/?l=bugtraq\u0026m=132750579901589\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=132872385320240\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=133365109612558\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=133728004526190\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=134254866602253\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=134254957702612\u0026w=2", + "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + "http://osvdb.org/74829", + "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + "http://secunia.com/advisories/45791", + "http://secunia.com/advisories/47998", + "http://secunia.com/advisories/48256", + "http://secunia.com/advisories/48692", + "http://secunia.com/advisories/48915", + "http://secunia.com/advisories/48948", + "http://secunia.com/advisories/49198", + "http://secunia.com/advisories/55322", + "http://secunia.com/advisories/55350", + "http://secunia.com/advisories/55351", + "http://security.gentoo.org/glsa/glsa-201203-02.xml", + "http://security.gentoo.org/glsa/glsa-201406-32.xml", + "http://support.apple.com/kb/HT4999", + "http://support.apple.com/kb/HT5001", + "http://support.apple.com/kb/HT5130", + "http://support.apple.com/kb/HT5281", + "http://support.apple.com/kb/HT5501", + "http://support.apple.com/kb/HT6150", + "http://technet.microsoft.com/security/advisory/2588513", + "http://vnhacker.blogspot.com/2011/09/beast.html", + "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + "http://www.debian.org/security/2012/dsa-2398", + "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + "http://www.ibm.com/developerworks/java/jdk/alerts/", + "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + "http://www.insecure.cl/Beast-SSL.rar", + "http://www.kb.cert.org/vuls/id/864643", + "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + "http://www.opera.com/docs/changelogs/mac/1151/", + "http://www.opera.com/docs/changelogs/mac/1160/", + "http://www.opera.com/docs/changelogs/unix/1151/", + "http://www.opera.com/docs/changelogs/unix/1160/", + "http://www.opera.com/docs/changelogs/windows/1151/", + "http://www.opera.com/docs/changelogs/windows/1160/", + "http://www.opera.com/support/kb/view/1004/", + "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + "http://www.securityfocus.com/bid/49388", + "http://www.securityfocus.com/bid/49778", + "http://www.securitytracker.com/id/1029190", + "http://www.securitytracker.com/id?1025997", + "http://www.securitytracker.com/id?1026103", + "http://www.securitytracker.com/id?1026704", + "http://www.ubuntu.com/usn/USN-1263-1", + "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + "https://access.redhat.com/security/cve/CVE-2011-3389", + "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + "https://bugzilla.novell.com/show_bug.cgi?id=719047", + "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + "https://hermes.opensuse.org/messages/13154861", + "https://hermes.opensuse.org/messages/13155432", + "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + "https://linux.oracle.com/cve/CVE-2011-3389.html", + "https://linux.oracle.com/errata/ELSA-2011-1380.html", + "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + "https://ubuntu.com/security/notices/USN-1263-1", + "https://www.cve.org/CVERecord?id=CVE-2011-3389" + ], + "PublishedDate": "2011-09-06T19:55:00Z", + "LastModifiedDate": "2022-11-29T15:56:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libgssapi-krb5-2@1.18.3-6+deb11u1", + "PkgName": "libgssapi-krb5-2", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libgssapi-krb5-2@1.18.3-6+deb11u1", + "PkgName": "libgssapi-krb5-2", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "libip4tc2@1.8.7-1", + "PkgName": "libip4tc2", + "InstalledVersion": "1.8.7-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "libip6tc2@1.8.7-1", + "PkgName": "libip6tc2", + "InstalledVersion": "1.8.7-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libk5crypto3@1.18.3-6+deb11u1", + "PkgName": "libk5crypto3", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libk5crypto3@1.18.3-6+deb11u1", + "PkgName": "libk5crypto3", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libkrb5-3@1.18.3-6+deb11u1", + "PkgName": "libkrb5-3", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libkrb5-3@1.18.3-6+deb11u1", + "PkgName": "libkrb5-3", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libkrb5support0@1.18.3-6+deb11u1", + "PkgName": "libkrb5support0", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libkrb5support0@1.18.3-6+deb11u1", + "PkgName": "libkrb5support0", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1271", + "VendorIDs": [ + "DSA-5123-1" + ], + "PkgID": "liblzma5@5.2.5-2", + "PkgName": "liblzma5", + "InstalledVersion": "5.2.5-2", + "FixedVersion": "5.2.5-2.1~deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1271", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "arbitrary-file-write vulnerability", + "Description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8" + ], + "PublishedDate": "2022-08-31T16:15:00Z", + "LastModifiedDate": "2022-10-07T14:14:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1586", + "PkgID": "libpcre2-8-0@10.36-2", + "PkgName": "libpcre2-8-0", + "InstalledVersion": "10.36-2", + "FixedVersion": "10.36-2+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1586", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre2: Out-of-bounds read in compile_xclass_matchingpath in pcre2_jit_compile.c", + "Description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:5809", + "https://access.redhat.com/security/cve/CVE-2022-1586", + "https://bugzilla.redhat.com/2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1586", + "https://errata.almalinux.org/8/ALSA-2022-5809.html", + "https://errata.rockylinux.org/RLSA-2022:5809", + "https://github.com/PCRE2Project/pcre2/commit/50a51cb7e67268e6ad417eb07c9de9bfea5cc55a,", + "https://github.com/PCRE2Project/pcre2/commit/d4fa336fbcc388f89095b184ba6d99422cfc676c", + "https://linux.oracle.com/cve/CVE-2022-1586.html", + "https://linux.oracle.com/errata/ELSA-2022-5809.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1586", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1586" + ], + "PublishedDate": "2022-05-16T21:15:00Z", + "LastModifiedDate": "2023-03-16T05:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1587", + "PkgID": "libpcre2-8-0@10.36-2", + "PkgName": "libpcre2-8-0", + "InstalledVersion": "10.36-2", + "FixedVersion": "10.36-2+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1587", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre2: Out-of-bounds read in get_recurse_data_length in pcre2_jit_compile.c", + "Description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-1587", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077983,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1587", + "https://github.com/PCRE2Project/pcre2/commit/03654e751e7f0700693526b67dfcadda6b42c9d0", + "https://linux.oracle.com/cve/CVE-2022-1587.html", + "https://linux.oracle.com/errata/ELSA-2022-5251.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1587", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1587" + ], + "PublishedDate": "2022-05-16T21:15:00Z", + "LastModifiedDate": "2023-03-16T05:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-11164", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11164", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c", + "Description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 7.8, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://openwall.com/lists/oss-security/2017/07/11/3", + "http://www.openwall.com/lists/oss-security/2023/04/11/1", + "http://www.openwall.com/lists/oss-security/2023/04/12/1", + "http://www.securityfocus.com/bid/99575", + "https://access.redhat.com/security/cve/CVE-2017-11164", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + "https://www.cve.org/CVERecord?id=CVE-2017-11164" + ], + "PublishedDate": "2017-07-11T03:29:00Z", + "LastModifiedDate": "2023-04-12T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-16231", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-16231", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service", + "Description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + "http://seclists.org/fulldisclosure/2018/Dec/33", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101688", + "https://access.redhat.com/security/cve/CVE-2017-16231", + "https://bugs.exim.org/show_bug.cgi?id=2047", + "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + "https://www.cve.org/CVERecord?id=CVE-2017-16231" + ], + "PublishedDate": "2019-03-21T15:59:00Z", + "LastModifiedDate": "2019-04-02T13:55:00Z" + }, + { + "VulnerabilityID": "CVE-2017-7245", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7245", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7245", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7245" + ], + "PublishedDate": "2017-03-23T21:59:00Z", + "LastModifiedDate": "2018-08-17T10:29:00Z" + }, + { + "VulnerabilityID": "CVE-2017-7246", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7246", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7246", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7246" + ], + "PublishedDate": "2017-03-23T21:59:00Z", + "LastModifiedDate": "2018-08-17T10:29:00Z" + }, + { + "VulnerabilityID": "CVE-2019-20838", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20838", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: Buffer over-read in JIT when UTF is disabled and \\X or \\R has fixed quantifier greater than 1", + "Description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://access.redhat.com/security/cve/CVE-2019-20838", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2019-20838.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2019-20838", + "https://www.pcre.org/original/changelog.txt" + ], + "PublishedDate": "2020-06-15T17:15:00Z", + "LastModifiedDate": "2021-09-22T14:22:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36084", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36084", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: use-after-free in __cil_verify_classperms()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36084", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + "https://linux.oracle.com/cve/CVE-2021-36084.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36084" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:16:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36085", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36085", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: use-after-free in __cil_verify_classperms()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36085", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + "https://linux.oracle.com/cve/CVE-2021-36085.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36085" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:26:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36086", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36086", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free in cil_reset_classpermission()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36086", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + "https://linux.oracle.com/cve/CVE-2021-36086.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36086" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36087", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36087", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: heap-based buffer overflow in ebitmap_match_any()", + "Description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36087", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + "https://linux.oracle.com/cve/CVE-2021-36087.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36087" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T14:05:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1292", + "VendorIDs": [ + "DSA-5139-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1292", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "c_rehash script allows command injection", + "Description": "The c_rehash script does not properly sanitise shell metacharacters to prevent command injection. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.3 (Affected 3.0.0,3.0.1,3.0.2). Fixed in OpenSSL 1.1.1o (Affected 1.1.1-1.1.1n). Fixed in OpenSSL 1.0.2ze (Affected 1.0.2-1.0.2zd).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-78" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 10, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.7 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-1292", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-953464.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1ad73b4d27bd8c1b369a3cd453681d3a4f1bb9b2", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=548d3f280a6e737673f5b61fce24bb100108dfeb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e5fd1728ef4c7a5bf7c7a7163ca60370460a6e23", + "https://linux.oracle.com/cve/CVE-2022-1292.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VX4KWHPMKYJL6ZLW4M5IU7E5UV5ZWJQU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNU5M7BXMML26G3GPYKFGQYPQDRSNKDD/", + "https://mta.openssl.org/pipermail/openssl-announce/2022-May/000224.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1292", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0011", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220602-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://ubuntu.com/security/notices/USN-5402-1", + "https://ubuntu.com/security/notices/USN-5402-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1292", + "https://www.debian.org/security/2022/dsa-5139", + "https://www.openssl.org/news/secadv/20220503.txt", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-05-03T16:15:00Z", + "LastModifiedDate": "2023-02-14T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2068", + "VendorIDs": [ + "DSA-5169-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2068", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "the c_rehash script allows command injection", + "Description": "In addition to the c_rehash shell command injection identified in CVE-2022-1292, further circumstances where the c_rehash script does not properly sanitise shell metacharacters to prevent command injection were found by code review. When the CVE-2022-1292 was fixed it was not discovered that there are other places in the script where the file names of certificates being hashed were possibly passed to a command executed through the shell. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.4 (Affected 3.0.0,3.0.1,3.0.2,3.0.3). Fixed in OpenSSL 1.1.1p (Affected 1.1.1-1.1.1o). Fixed in OpenSSL 1.0.2zf (Affected 1.0.2-1.0.2ze).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-78" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 10, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.7 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2068", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c9c35870601b4a44d86ddbf512b38df38285cfa", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7a9c027159fe9e1bbc2cd38a8a2914bff0d5abd9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9639817dac8bbbaa64d09efad7464ccc405527c7", + "https://linux.oracle.com/cve/CVE-2022-2068.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6WZZBKUHQFGSKGNXXKICSRPL7AMVW5M5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2068", + "https://security.netapp.com/advisory/ntap-20220707-0008/", + "https://ubuntu.com/security/notices/USN-5488-1", + "https://ubuntu.com/security/notices/USN-5488-2", + "https://www.cve.org/CVERecord?id=CVE-2022-2068", + "https://www.debian.org/security/2022/dsa-5169", + "https://www.openssl.org/news/secadv/20220621.txt" + ], + "PublishedDate": "2022-06-21T15:15:00Z", + "LastModifiedDate": "2023-03-01T16:23:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4450", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4450", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "double free after calling PEM_read_bio_ex", + "Description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0215", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0215", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free following BIO_new_NDEF", + "Description": "The public API function BIO_new_NDEF is a helper function used for streaming\nASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\nSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\nend user applications.\n\nThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\nBIO onto the front of it to form a BIO chain, and then returns the new head of\nthe BIO chain to the caller. Under certain conditions, for example if a CMS\nrecipient public key is invalid, the new filter BIO is freed and the function\nreturns a NULL result indicating a failure. However, in this case, the BIO chain\nis not properly cleaned up and the BIO passed by the caller still retains\ninternal pointers to the previously freed filter BIO. If the caller then goes on\nto call BIO_pop() on the BIO then a use-after-free will occur. This will most\nlikely result in a crash.\n\n\n\nThis scenario occurs directly in the internal function B64_write_ASN1() which\nmay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\nthe BIO. This internal function is in turn called by the public API functions\nPEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\nSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\n\nOther public API functions that may be impacted by this include\ni2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\ni2d_PKCS7_bio_stream.\n\nThe OpenSSL cms and smime command line applications are similarly affected.\n\n\n\n", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0286", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0286", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "X.400 address type confusion in X.509 GeneralName", + "Description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-843" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-03-27T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0464", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0464", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "Description": "A security vulnerability has been identified in all supported versions\n\nof OpenSSL related to the verification of X.509 certificate chains\nthat include policy constraints. Attackers may be able to exploit this\nvulnerability by creating a malicious certificate chain that triggers\nexponential use of computational resources, leading to a denial-of-service\n(DoS) attack on affected systems.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt" + ], + "PublishedDate": "2023-03-22T17:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2650", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2097", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2097", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "AES OCB fails to encrypt some bytes", + "Description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of \"in place\" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt" + ], + "PublishedDate": "2022-07-05T11:15:00Z", + "LastModifiedDate": "2023-04-20T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4304", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4304", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing attack in RSA Decryption implementation", + "Description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "Severity": "MEDIUM", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T17:13:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0465", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0465", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Invalid certificate policies in leaf certificates are silently ignored", + "Description": "Applications that use a non-default option when verifying certificates may be\nvulnerable to an attack from a malicious CA to circumvent certain checks.\n\nInvalid certificate policies in leaf certificates are silently ignored by\nOpenSSL and other certificate policy checks are skipped for that certificate.\nA malicious CA could use this to deliberately assert invalid certificate policies\nin order to circumvent policy checking on the certificate altogether.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0466", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0466", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Certificate policy check not enabled", + "Description": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2007-6755", + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dual_EC_DRBG: weak pseudo random number generator", + "Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + } + }, + "References": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html" + ], + "PublishedDate": "2013-10-11T22:55:00Z", + "LastModifiedDate": "2022-11-01T14:44:00Z" + }, + { + "VulnerabilityID": "CVE-2010-0928", + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: RSA authentication weakness", + "Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-310" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:N/A:N", + "V2Score": 4 + } + }, + "References": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928" + ], + "PublishedDate": "2010-03-05T19:30:00Z", + "LastModifiedDate": "2017-08-17T01:32:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3821", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in format_timespan() function", + "Description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821" + ], + "PublishedDate": "2022-11-08T22:15:00Z", + "LastModifiedDate": "2023-05-03T12:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4415", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "Description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3" + ], + "PublishedDate": "2023-01-11T15:15:00Z", + "LastModifiedDate": "2023-02-02T16:19:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4392", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + } + }, + "References": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392" + ], + "PublishedDate": "2013-10-28T22:55:00Z", + "LastModifiedDate": "2022-01-31T17:49:00Z" + }, + { + "VulnerabilityID": "CVE-2020-13529", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "Description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "Severity": "LOW", + "CweIDs": [ + "CWE-290" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V2Score": 2.9, + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529" + ], + "PublishedDate": "2021-05-10T16:15:00Z", + "LastModifiedDate": "2022-10-07T02:59:00Z" + }, + { + "VulnerabilityID": "CVE-2021-46848", + "PkgID": "libtasn1-6@4.16.0-2", + "PkgName": "libtasn1-6", + "InstalledVersion": "4.16.0-2", + "FixedVersion": "4.16.0-2+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-46848", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libtasn1: Out-of-bound access in ETYPE_OK", + "Description": "GNU Libtasn1 before 4.19.0 has an ETYPE_OK off-by-one array size check that affects asn1_encode_simple_der.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0343", + "https://access.redhat.com/security/cve/CVE-2021-46848", + "https://bugs.gentoo.org/866237", + "https://bugzilla.redhat.com/2140058", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + "https://errata.almalinux.org/9/ALSA-2023-0343.html", + "https://errata.rockylinux.org/RLSA-2023:0343", + "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + "https://gitlab.com/gnutls/libtasn1/-/issues/32", + "https://linux.oracle.com/cve/CVE-2021-46848.html", + "https://linux.oracle.com/errata/ELSA-2023-0343.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + "https://security.netapp.com/advisory/ntap-20221118-0006/", + "https://ubuntu.com/security/notices/USN-5707-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46848" + ], + "PublishedDate": "2022-10-24T14:15:00Z", + "LastModifiedDate": "2023-01-20T13:55:00Z" + }, + { + "VulnerabilityID": "CVE-2021-46828", + "VendorIDs": [ + "DSA-5200-1" + ], + "PkgID": "libtirpc-common@1.3.1-1", + "PkgName": "libtirpc-common", + "InstalledVersion": "1.3.1-1", + "FixedVersion": "1.3.1-1+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-46828", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libtirpc: DoS vulnerability with lots of connections", + "Description": "In libtirpc before 1.3.3rc1, remote attackers could exhaust the file descriptors of a process that uses libtirpc because idle TCP connections are mishandled. This can, in turn, lead to an svc_run infinite loop without accepting new connections.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://git.linux-nfs.org/?p=steved/libtirpc.git;a=commit;h=86529758570cef4c73fb9b9c4104fdc510f701ed", + "https://access.redhat.com/errata/RHSA-2022:8400", + "https://access.redhat.com/security/cve/CVE-2021-46828", + "https://bugzilla.redhat.com/2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118157", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46828", + "https://errata.almalinux.org/9/ALSA-2022-8400.html", + "https://errata.rockylinux.org/RLSA-2022:8400", + "https://linux.oracle.com/cve/CVE-2021-46828.html", + "https://linux.oracle.com/errata/ELSA-2022-8400.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00004.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46828", + "https://security.gentoo.org/glsa/202210-33", + "https://security.netapp.com/advisory/ntap-20221007-0004/", + "https://ubuntu.com/security/notices/USN-5538-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46828", + "https://www.debian.org/security/2022/dsa-5200" + ], + "PublishedDate": "2022-07-20T06:15:00Z", + "LastModifiedDate": "2022-12-02T20:02:00Z" + }, + { + "VulnerabilityID": "CVE-2021-46828", + "VendorIDs": [ + "DSA-5200-1" + ], + "PkgID": "libtirpc3@1.3.1-1", + "PkgName": "libtirpc3", + "InstalledVersion": "1.3.1-1", + "FixedVersion": "1.3.1-1+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-46828", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libtirpc: DoS vulnerability with lots of connections", + "Description": "In libtirpc before 1.3.3rc1, remote attackers could exhaust the file descriptors of a process that uses libtirpc because idle TCP connections are mishandled. This can, in turn, lead to an svc_run infinite loop without accepting new connections.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://git.linux-nfs.org/?p=steved/libtirpc.git;a=commit;h=86529758570cef4c73fb9b9c4104fdc510f701ed", + "https://access.redhat.com/errata/RHSA-2022:8400", + "https://access.redhat.com/security/cve/CVE-2021-46828", + "https://bugzilla.redhat.com/2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118157", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46828", + "https://errata.almalinux.org/9/ALSA-2022-8400.html", + "https://errata.rockylinux.org/RLSA-2022:8400", + "https://linux.oracle.com/cve/CVE-2021-46828.html", + "https://linux.oracle.com/errata/ELSA-2022-8400.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00004.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46828", + "https://security.gentoo.org/glsa/202210-33", + "https://security.netapp.com/advisory/ntap-20221007-0004/", + "https://ubuntu.com/security/notices/USN-5538-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46828", + "https://www.debian.org/security/2022/dsa-5200" + ], + "PublishedDate": "2022-07-20T06:15:00Z", + "LastModifiedDate": "2022-12-02T20:02:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3821", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in format_timespan() function", + "Description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821" + ], + "PublishedDate": "2022-11-08T22:15:00Z", + "LastModifiedDate": "2023-05-03T12:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4415", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "Description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3" + ], + "PublishedDate": "2023-01-11T15:15:00Z", + "LastModifiedDate": "2023-02-02T16:19:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4392", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + } + }, + "References": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392" + ], + "PublishedDate": "2013-10-28T22:55:00Z", + "LastModifiedDate": "2022-01-31T17:49:00Z" + }, + { + "VulnerabilityID": "CVE-2020-13529", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "Description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "Severity": "LOW", + "CweIDs": [ + "CWE-290" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V2Score": 2.9, + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529" + ], + "PublishedDate": "2021-05-10T16:15:00Z", + "LastModifiedDate": "2022-10-07T02:59:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "libxtables12@1.8.7-1", + "PkgName": "libxtables12", + "InstalledVersion": "1.8.7-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4899", + "PkgID": "libzstd1@1.4.8+dfsg-2.1", + "PkgName": "libzstd1", + "InstalledVersion": "1.4.8+dfsg-2.1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4899", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in util.c", + "Description": "A vulnerability was found in zstd v1.4.10, where an attacker can supply empty string as an argument to the command line tool to cause buffer overrun.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-4899", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4899", + "https://github.com/facebook/zstd/issues/3200", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4899", + "https://www.cve.org/CVERecord?id=CVE-2022-4899" + ], + "PublishedDate": "2023-03-31T20:15:00Z", + "LastModifiedDate": "2023-04-07T01:19:00Z" + }, + { + "VulnerabilityID": "CVE-2007-5686", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-264" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N", + "V2Score": 4.9 + } + }, + "References": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "PublishedDate": "2007-10-28T17:08:00Z", + "LastModifiedDate": "2018-10-15T21:45:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4235", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "Severity": "LOW", + "CweIDs": [ + "CWE-367" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 3.3, + "V3Score": 4.7 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 3.7, + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235" + ], + "PublishedDate": "2019-12-03T15:15:00Z", + "LastModifiedDate": "2023-02-13T00:28:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19882", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.9, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882" + ], + "PublishedDate": "2019-12-18T16:15:00Z", + "LastModifiedDate": "2020-08-25T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29383", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Improper input validation in shadow-utils package utility chfn", + "Description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that \"cat /etc/passwd\" shows a rogue user account.", + "Severity": "LOW", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797" + ], + "PublishedDate": "2023-04-14T22:15:00Z", + "LastModifiedDate": "2023-04-24T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2007-5686", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-264" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N", + "V2Score": 4.9 + } + }, + "References": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "PublishedDate": "2007-10-28T17:08:00Z", + "LastModifiedDate": "2018-10-15T21:45:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4235", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "Severity": "LOW", + "CweIDs": [ + "CWE-367" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 3.3, + "V3Score": 4.7 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 3.7, + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235" + ], + "PublishedDate": "2019-12-03T15:15:00Z", + "LastModifiedDate": "2023-02-13T00:28:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19882", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.9, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882" + ], + "PublishedDate": "2019-12-18T16:15:00Z", + "LastModifiedDate": "2020-08-25T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29383", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Improper input validation in shadow-utils package utility chfn", + "Description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that \"cat /etc/passwd\" shows a rogue user account.", + "Severity": "LOW", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797" + ], + "PublishedDate": "2023-04-14T22:15:00Z", + "LastModifiedDate": "2023-04-24T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2020-16156", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-16156", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "perl-CPAN: Bypass of verification of signatures in CHECKSUMS files", + "Description": "CPAN 2.28 allows Signature Verification Bypass.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + "https://access.redhat.com/security/cve/CVE-2020-16156", + "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + "https://ubuntu.com/security/notices/USN-5689-1", + "https://ubuntu.com/security/notices/USN-5689-2", + "https://www.cve.org/CVERecord?id=CVE-2020-16156" + ], + "PublishedDate": "2021-12-13T18:15:00Z", + "LastModifiedDate": "2022-04-01T13:26:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31484", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31484", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "CPAN.pm before 2.35 does not verify TLS certificates when downloading ...", + "Description": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + "https://github.com/andk/cpanpm/pull/175", + "https://metacpan.org/dist/CPAN/changes", + "https://ubuntu.com/security/notices/USN-6112-1", + "https://ubuntu.com/security/notices/USN-6112-2", + "https://www.openwall.com/lists/oss-security/2023/04/18/14" + ], + "PublishedDate": "2023-04-29T00:15:00Z", + "LastModifiedDate": "2023-05-08T17:11:00Z" + }, + { + "VulnerabilityID": "CVE-2011-4116", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-4116", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "perl: File::Temp insecure temporary file handling", + "Description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N", + "V2Score": 1.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2011/11/04/2", + "http://www.openwall.com/lists/oss-security/2011/11/04/4", + "https://access.redhat.com/security/cve/CVE-2011-4116", + "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + "https://seclists.org/oss-sec/2011/q4/238", + "https://www.cve.org/CVERecord?id=CVE-2011-4116" + ], + "PublishedDate": "2020-01-31T18:15:00Z", + "LastModifiedDate": "2020-02-05T22:10:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31486", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31486", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTP::Tiny 0.082, a Perl core module since 5.13.9 and available standa ...", + "Description": "HTTP::Tiny 0.082, a Perl core module since 5.13.9 and available standalone on CPAN, has an insecure default TLS configuration where users must opt in to verify certificates.", + "Severity": "LOW", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://hackeriet.github.io/cpan-http-tiny-overview/", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + "https://www.openwall.com/lists/oss-security/2023/05/03/4", + "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/" + ], + "PublishedDate": "2023-04-29T00:15:00Z", + "LastModifiedDate": "2023-05-08T17:06:00Z" + }, + { + "VulnerabilityID": "CVE-2005-2541", + "PkgID": "tar@1.34+dfsg-1", + "PkgName": "tar", + "InstalledVersion": "1.34+dfsg-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2005-2541", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tar: does not properly warn the user when extracting setuid or setgid files", + "Description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V2Score": 10 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://marc.info/?l=bugtraq\u0026m=112327628230258\u0026w=2", + "https://access.redhat.com/security/cve/CVE-2005-2541", + "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + "https://www.cve.org/CVERecord?id=CVE-2005-2541" + ], + "PublishedDate": "2005-08-10T04:00:00Z", + "LastModifiedDate": "2021-06-18T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-48303", + "PkgID": "tar@1.34+dfsg-1", + "PkgName": "tar", + "InstalledVersion": "1.34+dfsg-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-48303", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "heap buffer overflow at from_header() in list.c via specially crafted checksum", + "Description": "GNU Tar through 1.34 has a one-byte out-of-bounds read that results in use of uninitialized memory for a conditional jump. Exploitation to change the flow of control has not been demonstrated. The issue occurs in from_header in list.c via a V7 archive in which mtime has approximately 11 whitespace characters.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0959", + "https://access.redhat.com/security/cve/CVE-2022-48303", + "https://bugzilla.redhat.com/2149722", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + "https://errata.almalinux.org/9/ALSA-2023-0959.html", + "https://errata.rockylinux.org/RLSA-2023:0959", + "https://linux.oracle.com/cve/CVE-2022-48303.html", + "https://linux.oracle.com/errata/ELSA-2023-0959.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + "https://savannah.gnu.org/bugs/?62387", + "https://savannah.gnu.org/patch/?10307", + "https://ubuntu.com/security/notices/USN-5900-1", + "https://ubuntu.com/security/notices/USN-5900-2", + "https://www.cve.org/CVERecord?id=CVE-2022-48303" + ], + "PublishedDate": "2023-01-30T04:15:00Z", + "LastModifiedDate": "2023-05-30T17:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-37434", + "VendorIDs": [ + "DSA-5218-1" + ], + "PkgID": "zlib1g@1:1.2.11.dfsg-2", + "PkgName": "zlib1g", + "InstalledVersion": "1:1.2.11.dfsg-2", + "FixedVersion": "1:1.2.11.dfsg-2+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-37434", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "heap-based buffer over-read and overflow in inflate() in inflate.c via a large gzip header extra field", + "Description": "zlib through 1.2.12 has a heap-based buffer over-read or buffer overflow in inflate in inflate.c via a large gzip header extra field. NOTE: only applications that call inflateGetHeader are affected. Some common applications bundle the affected zlib source code but may be unable to call inflateGetHeader (e.g., see the nodejs/node reference).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/37", + "http://seclists.org/fulldisclosure/2022/Oct/38", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/42", + "http://www.openwall.com/lists/oss-security/2022/08/05/2", + "http://www.openwall.com/lists/oss-security/2022/08/09/1", + "https://access.redhat.com/errata/RHSA-2022:8291", + "https://access.redhat.com/security/cve/CVE-2022-37434", + "https://bugzilla.redhat.com/2116639", + "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + "https://errata.almalinux.org/9/ALSA-2022-8291.html", + "https://errata.rockylinux.org/RLSA-2022:8291", + "https://github.com/curl/curl/issues/9271", + "https://github.com/ivd38/zlib_overflow", + "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + "https://linux.oracle.com/cve/CVE-2022-37434.html", + "https://linux.oracle.com/errata/ELSA-2023-1095.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + "https://security.netapp.com/advisory/ntap-20220901-0005/", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://support.apple.com/kb/HT213488", + "https://support.apple.com/kb/HT213489", + "https://support.apple.com/kb/HT213490", + "https://support.apple.com/kb/HT213491", + "https://support.apple.com/kb/HT213493", + "https://support.apple.com/kb/HT213494", + "https://ubuntu.com/security/notices/USN-5570-1", + "https://ubuntu.com/security/notices/USN-5570-2", + "https://ubuntu.com/security/notices/USN-5573-1", + "https://www.cve.org/CVERecord?id=CVE-2022-37434", + "https://www.debian.org/security/2022/dsa-5218" + ], + "PublishedDate": "2022-08-05T07:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-25032", + "VendorIDs": [ + "DSA-5111-1" + ], + "PkgID": "zlib1g@1:1.2.11.dfsg-2", + "PkgName": "zlib1g", + "InstalledVersion": "1:1.2.11.dfsg-2", + "FixedVersion": "1:1.2.11.dfsg-2+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-25032", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "A flaw found in zlib when compressing (not decompressing) certain inputs", + "Description": "zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H", + "V3Score": 8.2 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "http://www.openwall.com/lists/oss-security/2022/03/25/2", + "http://www.openwall.com/lists/oss-security/2022/03/26/1", + "https://access.redhat.com/errata/RHSA-2022:8420", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + "https://access.redhat.com/security/cve/CVE-2018-25032", + "https://bugzilla.redhat.com/2067945", + "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + "https://errata.almalinux.org/9/ALSA-2022-8420.html", + "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + "https://github.com/madler/zlib/issues/605", + "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + "https://linux.oracle.com/cve/CVE-2018-25032.html", + "https://linux.oracle.com/errata/ELSA-2022-9565.html", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + "https://security.gentoo.org/glsa/202210-42", + "https://security.netapp.com/advisory/ntap-20220526-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5355-1", + "https://ubuntu.com/security/notices/USN-5355-2", + "https://ubuntu.com/security/notices/USN-5359-1", + "https://ubuntu.com/security/notices/USN-5359-2", + "https://ubuntu.com/security/notices/USN-5739-1", + "https://www.cve.org/CVERecord?id=CVE-2018-25032", + "https://www.debian.org/security/2022/dsa-5111", + "https://www.openwall.com/lists/oss-security/2022/03/24/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/3", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-03-25T09:15:00Z", + "LastModifiedDate": "2023-04-27T17:50:00Z" + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "DaemonSet", + "Name": "kube-proxy", + "Results": [ + { + "Target": "DaemonSet/kube-proxy", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 126, + "Failures": 15, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 139, + "EndLine": 164, + "Code": { + "Lines": [ + { + "Number": 139, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 140, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 148, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 139, + "EndLine": 164, + "Code": { + "Lines": [ + { + "Number": 139, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 140, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 148, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV009", + "AVDID": "AVD-KSV-0009", + "Title": "Access to host network", + "Description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "Message": "DaemonSet 'kube-proxy' should not set 'spec.template.spec.hostNetwork' to true", + "Namespace": "builtin.kubernetes.KSV009", + "Query": "data.builtin.kubernetes.KSV009.deny", + "Resolution": "Do not set 'spec.template.spec.hostNetwork' to true.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv009", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 128, + "EndLine": 195, + "Code": { + "Lines": [ + { + "Number": 128, + "Content": " revisionHistoryLimit: 10", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 129, + "Content": " selector:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 130, + "Content": " matchLabels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 131, + "Content": " k8s-app: kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 132, + "Content": " template:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 133, + "Content": " metadata:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 134, + "Content": " creationTimestamp: null", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " labels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " k8s-app: kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 137, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 139, + "EndLine": 164, + "Code": { + "Lines": [ + { + "Number": 139, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 140, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 148, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 139, + "EndLine": 164, + "Code": { + "Lines": [ + { + "Number": 139, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 140, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 148, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 139, + "EndLine": 164, + "Code": { + "Lines": [ + { + "Number": 139, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 140, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 148, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV015", + "AVDID": "AVD-KSV-0015", + "Title": "CPU requests not specified", + "Description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.requests.cpu'", + "Namespace": "builtin.kubernetes.KSV015", + "Query": "data.builtin.kubernetes.KSV015.deny", + "Resolution": "Set 'containers[].resources.requests.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv015", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 139, + "EndLine": 164, + "Code": { + "Lines": [ + { + "Number": 139, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 140, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 148, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 139, + "EndLine": 164, + "Code": { + "Lines": [ + { + "Number": 139, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 140, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 148, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV017", + "AVDID": "AVD-KSV-0017", + "Title": "Privileged container", + "Description": "Privileged containers share namespaces with the host system and do not offer any security. They should be used exclusively for system containers that require high privileges.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.privileged' to false", + "Namespace": "builtin.kubernetes.KSV017", + "Query": "data.builtin.kubernetes.KSV017.deny", + "Resolution": "Change 'containers[].securityContext.privileged' to 'false'.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv017", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv017" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 139, + "EndLine": 164, + "Code": { + "Lines": [ + { + "Number": 139, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 140, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 148, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 139, + "EndLine": 164, + "Code": { + "Lines": [ + { + "Number": 139, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 140, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 148, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 139, + "EndLine": 164, + "Code": { + "Lines": [ + { + "Number": 139, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 140, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 148, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kube-proxy' of DaemonSet 'kube-proxy' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 139, + "EndLine": 164, + "Code": { + "Lines": [ + { + "Number": 139, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 140, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 148, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV023", + "AVDID": "AVD-KSV-0023", + "Title": "hostPath volumes mounted", + "Description": "HostPath volumes must be forbidden.", + "Message": "DaemonSet 'kube-proxy' should not set 'spec.template.volumes.hostPath'", + "Namespace": "builtin.kubernetes.KSV023", + "Query": "data.builtin.kubernetes.KSV023.deny", + "Resolution": "Do not set 'spec.volumes[*].hostPath'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv023", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 128, + "EndLine": 195, + "Code": { + "Lines": [ + { + "Number": 128, + "Content": " revisionHistoryLimit: 10", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 129, + "Content": " selector:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 130, + "Content": " matchLabels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 131, + "Content": " k8s-app: kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 132, + "Content": " template:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 133, + "Content": " metadata:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 134, + "Content": " creationTimestamp: null", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " labels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " k8s-app: kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 137, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 139, + "EndLine": 164, + "Code": { + "Lines": [ + { + "Number": 139, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 140, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 148, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 139, + "EndLine": 164, + "Code": { + "Lines": [ + { + "Number": 139, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 140, + "Content": " - /usr/local/bin/kube-proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - --config=/var/lib/kube-proxy/config.conf", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 142, + "Content": " - --hostname-override=$(NODE_NAME)", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 143, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " - name: NODE_NAME", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 148, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "default", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "demo-targets", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "ServiceAccount", + "Name": "lurker", + "Results": [ + { + "Target": "ServiceAccount/lurker", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "DaemonSet", + "Name": "kindnet", + "Results": [ + { + "Target": "docker.io/kindest/kindnetd:v20220510-4929dd75 (debian 11.3)", + "Class": "os-pkgs", + "Type": "debian", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2011-3374", + "PkgID": "apt@2.2.4", + "PkgName": "apt", + "InstalledVersion": "2.2.4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "PublishedDate": "2019-11-26T00:15:00Z", + "LastModifiedDate": "2021-02-09T16:08:00Z" + }, + { + "VulnerabilityID": "CVE-2022-0563", + "PkgID": "bsdutils@1:2.36.1-8+deb11u1", + "PkgName": "bsdutils", + "InstalledVersion": "1:2.36.1-8+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-0563", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "util-linux: partial disclosure of arbitrary files in chfn and chsh when compiled with libreadline", + "Description": "A flaw was found in the util-linux chfn and chsh utilities when compiled with Readline support. The Readline library uses an \"INPUTRC\" environment variable to get a path to the library config file. When the library cannot parse the specified file, it prints an error message containing data from the file. This flaw allows an unprivileged user to read root-owned files, potentially leading to privilege escalation. This flaw affects util-linux versions prior to 2.37.4.", + "Severity": "LOW", + "CweIDs": [ + "CWE-209" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 1.9, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-0563", + "https://blog.trailofbits.com/2023/02/16/suid-logic-bug-linux-readline/", + "https://lore.kernel.org/util-linux/20220214110609.msiwlm457ngoic6w@ws.net.home/T/#u", + "https://nvd.nist.gov/vuln/detail/CVE-2022-0563", + "https://security.netapp.com/advisory/ntap-20220331-0002/", + "https://www.cve.org/CVERecord?id=CVE-2022-0563" + ], + "PublishedDate": "2022-02-21T19:15:00Z", + "LastModifiedDate": "2022-06-03T14:15:00Z" + }, + { + "VulnerabilityID": "CVE-2016-2781", + "PkgID": "coreutils@8.32-4+b1", + "PkgName": "coreutils", + "InstalledVersion": "8.32-4+b1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2016-2781", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "coreutils: Non-privileged session can escape to the parent session in chroot", + "Description": "chroot in GNU coreutils, when used with --userspec, allows local users to escape to the parent session via a crafted TIOCSTI ioctl call, which pushes characters to the terminal's input buffer.", + "Severity": "LOW", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:N", + "V2Score": 2.1, + "V3Score": 6.5 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H", + "V2Score": 6.2, + "V3Score": 8.6 + } + }, + "References": [ + "http://seclists.org/oss-sec/2016/q1/452", + "http://www.openwall.com/lists/oss-security/2016/02/28/2", + "http://www.openwall.com/lists/oss-security/2016/02/28/3", + "https://access.redhat.com/security/cve/CVE-2016-2781", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-2781", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://lore.kernel.org/patchwork/patch/793178/", + "https://nvd.nist.gov/vuln/detail/CVE-2016-2781", + "https://www.cve.org/CVERecord?id=CVE-2016-2781" + ], + "PublishedDate": "2017-02-07T15:59:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-18018", + "PkgID": "coreutils@8.32-4+b1", + "PkgName": "coreutils", + "InstalledVersion": "8.32-4+b1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-18018", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "coreutils: race condition vulnerability in chown and chgrp", + "Description": "In GNU Coreutils through 8.29, chown-core.c in chown and chgrp does not prevent replacement of a plain file with a symlink during use of the POSIX \"-R -L\" options, which allows local users to modify the ownership of arbitrary files by leveraging a race condition.", + "Severity": "LOW", + "CweIDs": [ + "CWE-362" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 1.9, + "V3Score": 4.7 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:L/UI:R/S:U/C:L/I:L/A:L", + "V3Score": 4.2 + } + }, + "References": [ + "http://lists.gnu.org/archive/html/coreutils/2017-12/msg00045.html", + "https://access.redhat.com/security/cve/CVE-2017-18018", + "https://nvd.nist.gov/vuln/detail/CVE-2017-18018", + "https://www.cve.org/CVERecord?id=CVE-2017-18018" + ], + "PublishedDate": "2018-01-04T04:29:00Z", + "LastModifiedDate": "2018-01-19T15:46:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1664", + "VendorIDs": [ + "DSA-5147-1" + ], + "PkgID": "dpkg@1.20.9", + "PkgName": "dpkg", + "InstalledVersion": "1.20.9", + "FixedVersion": "1.20.10", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1664", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dpkg::Source::Archive in dpkg, the Debian package management system, b ...", + "Description": "Dpkg::Source::Archive in dpkg, the Debian package management system, before version 1.21.8, 1.20.10, 1.19.8, 1.18.26 is prone to a directory traversal vulnerability. When extracting untrusted source packages in v2 and v3 source package formats that include a debian.tar, the in-place extraction can lead to directory traversal situations on specially crafted orig.tar and debian.tar tarballs.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-22" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1664", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1f23dddc17f69c9598477098c7fb9936e15fa495", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=58814cacee39c4ce9e2cd0e3a3b9b57ad437eff5", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=7a6c03cb34d4a09f35df2f10779cbf1b70a5200b", + "https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=faa4c92debe45412bfcf8a44f26e827800bb24be", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00033.html", + "https://lists.debian.org/debian-security-announce/2022/msg00115.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1664", + "https://security.netapp.com/advisory/ntap-20221007-0002/", + "https://ubuntu.com/security/notices/USN-5446-1", + "https://ubuntu.com/security/notices/USN-5446-2" + ], + "PublishedDate": "2022-05-26T14:15:00Z", + "LastModifiedDate": "2022-12-03T02:19:00Z" + }, + { + "VulnerabilityID": "CVE-2022-34903", + "VendorIDs": [ + "DSA-5174-1" + ], + "PkgID": "gpgv@2.2.27-2+deb11u1", + "PkgName": "gpgv", + "InstalledVersion": "2.2.27-2+deb11u1", + "FixedVersion": "2.2.27-2+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-34903", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Signature spoofing via status line injection", + "Description": "GnuPG through 2.3.6, in unusual situations where an attacker possesses any secret-key information from a victim's keyring and other constraints (e.g., use of GPGME) are met, allows signature forgery via injection into the status line.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:N", + "V2Score": 5.8, + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2022/07/02/1", + "https://access.redhat.com/errata/RHSA-2022:6602", + "https://access.redhat.com/security/cve/CVE-2022-34903", + "https://bugs.debian.org/1014157", + "https://bugzilla.redhat.com/2102868", + "https://bugzilla.redhat.com/show_bug.cgi?id=2102868", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34903", + "https://dev.gnupg.org/T6027", + "https://errata.almalinux.org/9/ALSA-2022-6602.html", + "https://errata.rockylinux.org/RLSA-2022:6602", + "https://linux.oracle.com/cve/CVE-2022-34903.html", + "https://linux.oracle.com/errata/ELSA-2022-6602.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/FRLWJQ76A4UKHI3Q36BKSJKS4LFLQO33/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NPTAR76EIZY7NQFENSOZO7U473257OVZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VN63GBTMRWO36Y7BKA2WQHROAKCXKCBL/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VU64FUVG2PRZBSHFOQRSP7KDVEIZ23OS/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-34903", + "https://security.netapp.com/advisory/ntap-20220826-0005/", + "https://ubuntu.com/security/notices/USN-5503-1", + "https://ubuntu.com/security/notices/USN-5503-2", + "https://www.cve.org/CVERecord?id=CVE-2022-34903", + "https://www.debian.org/security/2022/dsa-5174", + "https://www.openwall.com/lists/oss-security/2022/06/30/1" + ], + "PublishedDate": "2022-07-01T22:15:00Z", + "LastModifiedDate": "2022-09-09T20:40:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3219", + "PkgID": "gpgv@2.2.27-2+deb11u1", + "PkgName": "gpgv", + "InstalledVersion": "2.2.27-2+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3219", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "denial of service issue (resource consumption) using compressed packets", + "Description": "GnuPG can be made to spin on a relatively small input by (for example) crafting a public key with thousands of signatures attached, compressed down to just a few KB.", + "Severity": "LOW", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-3219", + "https://bugzilla.redhat.com/show_bug.cgi?id=2127010", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3219", + "https://dev.gnupg.org/D556", + "https://dev.gnupg.org/T5993", + "https://marc.info/?l=oss-security\u0026m=165696590211434\u0026w=4", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3219", + "https://security.netapp.com/advisory/ntap-20230324-0001/", + "https://www.cve.org/CVERecord?id=CVE-2022-3219" + ], + "PublishedDate": "2023-02-23T20:15:00Z", + "LastModifiedDate": "2023-05-26T16:31:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1271", + "VendorIDs": [ + "DSA-5122-1" + ], + "PkgID": "gzip@1.10-4", + "PkgName": "gzip", + "InstalledVersion": "1.10-4", + "FixedVersion": "1.10-4+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1271", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "arbitrary-file-write vulnerability", + "Description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8" + ], + "PublishedDate": "2022-08-31T16:15:00Z", + "LastModifiedDate": "2022-10-07T14:14:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "iptables@1.8.7-1", + "PkgName": "iptables", + "InstalledVersion": "1.8.7-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2011-3374", + "PkgID": "libapt-pkg6.0@2.2.4", + "PkgName": "libapt-pkg6.0", + "InstalledVersion": "2.2.4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3374", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "It was found that apt-key in apt, all versions, do not correctly valid ...", + "Description": "It was found that apt-key in apt, all versions, do not correctly validate gpg keys with the master keyring, leading to a potential man-in-the-middle attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V2Score": 4.3, + "V3Score": 3.7 + } + }, + "References": [ + "https://access.redhat.com/security/cve/cve-2011-3374", + "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642480", + "https://people.canonical.com/~ubuntu-security/cve/2011/CVE-2011-3374.html", + "https://seclists.org/fulldisclosure/2011/Sep/221", + "https://security-tracker.debian.org/tracker/CVE-2011-3374", + "https://snyk.io/vuln/SNYK-LINUX-APT-116518", + "https://ubuntu.com/security/CVE-2011-3374" + ], + "PublishedDate": "2019-11-26T00:15:00Z", + "LastModifiedDate": "2021-02-09T16:08:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3999", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "FixedVersion": "2.31-13+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3999", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "Description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2023-02-12T23:43:00Z" + }, + { + "VulnerabilityID": "CVE-2010-4756", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "Severity": "LOW", + "CweIDs": [ + "CWE-399" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V2Score": 4 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V2Score": 5 + } + }, + "References": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756" + ], + "PublishedDate": "2011-03-02T20:00:00Z", + "LastModifiedDate": "2021-09-01T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-20796", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796" + ], + "PublishedDate": "2019-02-26T02:29:00Z", + "LastModifiedDate": "2019-11-05T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010022", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack guard protection bypass", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2021-06-10T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010023", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "Description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010024", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: ASLR bypass using cache of thread stack and heap", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-200" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010025", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: information disclosure of heap addresses of pthread_created thread", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-330" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9192", + "PkgID": "libc-bin@2.31-13+deb11u3", + "PkgName": "libc-bin", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192" + ], + "PublishedDate": "2019-02-26T18:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2021-3999", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "FixedVersion": "2.31-13+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-3999", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: Off-by-one buffer overflow/underflow in getcwd()", + "Description": "A flaw was found in glibc. An off-by-one buffer overflow and underflow in getcwd() may lead to memory corruption when the size of the buffer is exactly 1. A local attacker who can control the input buffer and size passed to getcwd() in a setuid program could use this flaw to potentially execute arbitrary code and escalate their privileges on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-3999.json", + "https://access.redhat.com/security/cve/CVE-2021-3999", + "https://bugzilla.redhat.com/show_bug.cgi?id=2024637", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3999", + "https://linux.oracle.com/cve/CVE-2021-3999.html", + "https://linux.oracle.com/errata/ELSA-2022-9234.html", + "https://lists.debian.org/debian-lts-announce/2022/10/msg00021.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-3999", + "https://security-tracker.debian.org/tracker/CVE-2021-3999", + "https://security.netapp.com/advisory/ntap-20221104-0001/", + "https://sourceware.org/bugzilla/show_bug.cgi?id=28769", + "https://sourceware.org/git/gitweb.cgi?p=glibc.git%3Bh=23e0e8f5f1fb5ed150253d986ecccdc90c2dcd5e", + "https://ubuntu.com/security/notices/USN-5310-1", + "https://ubuntu.com/security/notices/USN-5310-2", + "https://www.cve.org/CVERecord?id=CVE-2021-3999", + "https://www.openwall.com/lists/oss-security/2022/01/24/4" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2023-02-12T23:43:00Z" + }, + { + "VulnerabilityID": "CVE-2010-4756", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-4756", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: glob implementation can cause excessive CPU and memory consumption due to crafted glob expressions", + "Description": "The glob implementation in the GNU C Library (aka glibc or libc6) allows remote authenticated users to cause a denial of service (CPU and memory consumption) via crafted glob expressions that do not match any pathnames, as demonstrated by glob expressions in STAT commands to an FTP daemon, a different vulnerability than CVE-2010-2632.", + "Severity": "LOW", + "CweIDs": [ + "CWE-399" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:S/C:N/I:N/A:P", + "V2Score": 4 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V2Score": 5 + } + }, + "References": [ + "http://cxib.net/stuff/glob-0day.c", + "http://securityreason.com/achievement_securityalert/89", + "http://securityreason.com/exploitalert/9223", + "https://access.redhat.com/security/cve/CVE-2010-4756", + "https://bugzilla.redhat.com/show_bug.cgi?id=681681", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2010-4756", + "https://nvd.nist.gov/vuln/detail/CVE-2010-4756", + "https://www.cve.org/CVERecord?id=CVE-2010-4756" + ], + "PublishedDate": "2011-03-02T20:00:00Z", + "LastModifiedDate": "2021-09-01T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-20796", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-20796", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(\\227|)(\\\\1\\\\1|t1|\\\\\\2537)+' in grep.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/107160", + "https://access.redhat.com/security/cve/CVE-2018-20796", + "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34141", + "https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00108.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-20796", + "https://security.netapp.com/advisory/ntap-20190315-0002/", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2018-20796" + ], + "PublishedDate": "2019-02-26T02:29:00Z", + "LastModifiedDate": "2019-11-05T21:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010022", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010022", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: stack guard protection bypass", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass stack guard protection. The component is: nptl. The attack vector is: Exploit stack buffer overflow vulnerability and use this bypass vulnerability to bypass stack guard. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010022", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010022", + "https://security-tracker.debian.org/tracker/CVE-2019-1010022", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22850#c3", + "https://ubuntu.com/security/CVE-2019-1010022", + "https://www.cve.org/CVERecord?id=CVE-2019-1010022" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2021-06-10T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010023", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010023", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: running ldd on malicious ELF leads to code execution because of wrong size computation", + "Description": "** DISPUTED ** GNU Libc current is affected by: Re-mapping current loaded library with malicious ELF file. The impact is: In worst case attacker may evaluate privileges. The component is: libld. The attack vector is: Attacker sends 2 ELF files to victim and asks to run ldd on it. ldd execute code. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109167", + "https://access.redhat.com/security/cve/CVE-2019-1010023", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010023", + "https://security-tracker.debian.org/tracker/CVE-2019-1010023", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22851", + "https://support.f5.com/csp/article/K11932200?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010023", + "https://www.cve.org/CVERecord?id=CVE-2019-1010023" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010024", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010024", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: ASLR bypass using cache of thread stack and heap", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may bypass ASLR using cache of thread stack and heap. The component is: glibc. NOTE: Upstream comments indicate \"this is being treated as a non-security bug and no real threat.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-200" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "http://www.securityfocus.com/bid/109162", + "https://access.redhat.com/security/cve/CVE-2019-1010024", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010024", + "https://security-tracker.debian.org/tracker/CVE-2019-1010024", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22852", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010024", + "https://www.cve.org/CVERecord?id=CVE-2019-1010024" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-1010025", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-1010025", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: information disclosure of heap addresses of pthread_created thread", + "Description": "** DISPUTED ** GNU Libc current is affected by: Mitigation bypass. The impact is: Attacker may guess the heap addresses of pthread_created thread. The component is: glibc. NOTE: the vendor's position is \"ASLR bypass itself is not a vulnerability.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-330" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-1010025", + "https://nvd.nist.gov/vuln/detail/CVE-2019-1010025", + "https://security-tracker.debian.org/tracker/CVE-2019-1010025", + "https://sourceware.org/bugzilla/show_bug.cgi?id=22853", + "https://support.f5.com/csp/article/K06046097", + "https://support.f5.com/csp/article/K06046097?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://ubuntu.com/security/CVE-2019-1010025", + "https://www.cve.org/CVERecord?id=CVE-2019-1010025" + ], + "PublishedDate": "2019-07-15T04:15:00Z", + "LastModifiedDate": "2020-11-16T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-9192", + "PkgID": "libc6@2.31-13+deb11u3", + "PkgName": "libc6", + "InstalledVersion": "2.31-13+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-9192", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "glibc: uncontrolled recursion in function check_dst_limits_calc_pos_1 in posix/regexec.c", + "Description": "** DISPUTED ** In the GNU C Library (aka glibc or libc6) through 2.29, check_dst_limits_calc_pos_1 in posix/regexec.c has Uncontrolled Recursion, as demonstrated by '(|)(\\\\1\\\\1)*' in grep, a different issue than CVE-2018-20796. NOTE: the software maintainer disputes that this is a vulnerability because the behavior occurs only with a crafted pattern.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 2.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-9192", + "https://nvd.nist.gov/vuln/detail/CVE-2019-9192", + "https://sourceware.org/bugzilla/show_bug.cgi?id=24269", + "https://support.f5.com/csp/article/K26346590?utm_source=f5support\u0026amp;utm_medium=RSS", + "https://www.cve.org/CVERecord?id=CVE-2019-9192" + ], + "PublishedDate": "2019-02-26T18:29:00Z", + "LastModifiedDate": "2020-08-24T17:37:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1304", + "PkgID": "libcom-err2@1.46.2-2", + "PkgName": "libcom-err2", + "InstalledVersion": "1.46.2-2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1304", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "e2fsprogs: out-of-bounds read/write via crafted filesystem", + "Description": "An out-of-bounds read/write vulnerability was found in e2fsprogs 1.46.5. This issue leads to a segmentation fault and possibly arbitrary code execution via a specially crafted filesystem.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-125", + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 5.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8361", + "https://access.redhat.com/security/cve/CVE-2022-1304", + "https://bugzilla.redhat.com/2069726", + "https://bugzilla.redhat.com/show_bug.cgi?id=2069726", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1304", + "https://errata.almalinux.org/9/ALSA-2022-8361.html", + "https://errata.rockylinux.org/RLSA-2022:8361", + "https://linux.oracle.com/cve/CVE-2022-1304.html", + "https://linux.oracle.com/errata/ELSA-2022-8361.html", + "https://marc.info/?l=linux-ext4\u0026m=165056234501732\u0026w=2", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1304", + "https://ubuntu.com/security/notices/USN-5464-1", + "https://www.cve.org/CVERecord?id=CVE-2022-1304" + ], + "PublishedDate": "2022-04-14T21:15:00Z", + "LastModifiedDate": "2023-02-12T22:15:00Z" + }, + { + "VulnerabilityID": "CVE-2019-8457", + "PkgID": "libdb5.3@5.3.28+dfsg1-0.8", + "PkgName": "libdb5.3", + "InstalledVersion": "5.3.28+dfsg1-0.8", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-8457", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "sqlite: heap out-of-bound read in function rtreenode()", + "Description": "SQLite3 from 3.6.0 to and including 3.27.2 is vulnerable to heap out-of-bound read in the rtreenode() function when handling invalid rtree tables.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 7.5, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://lists.opensuse.org/opensuse-security-announce/2019-06/msg00074.html", + "https://access.redhat.com/security/cve/CVE-2019-8457", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-8457", + "https://kc.mcafee.com/corporate/index?page=content\u0026id=SB10365", + "https://linux.oracle.com/cve/CVE-2019-8457.html", + "https://linux.oracle.com/errata/ELSA-2020-1810.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OPKYSWCOM3CL66RI76TYVIG6TJ263RXH/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SJPFGA45DI4F5MCF2OAACGH3HQOF4G3M/", + "https://nvd.nist.gov/vuln/detail/CVE-2019-8457", + "https://security.netapp.com/advisory/ntap-20190606-0002/", + "https://ubuntu.com/security/notices/USN-4004-1", + "https://ubuntu.com/security/notices/USN-4004-2", + "https://ubuntu.com/security/notices/USN-4019-1", + "https://ubuntu.com/security/notices/USN-4019-2", + "https://usn.ubuntu.com/4004-1/", + "https://usn.ubuntu.com/4004-2/", + "https://usn.ubuntu.com/4019-1/", + "https://usn.ubuntu.com/4019-2/", + "https://www.cve.org/CVERecord?id=CVE-2019-8457", + "https://www.oracle.com/security-alerts/cpuapr2020.html", + "https://www.oracle.com/security-alerts/cpujan2020.html", + "https://www.oracle.com/security-alerts/cpujul2020.html", + "https://www.oracle.com/technetwork/security-advisory/cpuoct2019-5072832.html", + "https://www.sqlite.org/releaselog/3_28_0.html", + "https://www.sqlite.org/src/info/90acdbfce9c08858" + ], + "PublishedDate": "2019-05-30T16:29:00Z", + "LastModifiedDate": "2021-07-31T08:15:00Z" + }, + { + "VulnerabilityID": "CVE-2021-33560", + "PkgID": "libgcrypt20@1.8.7-6", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.7-6", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-33560", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm", + "Description": "Libgcrypt before 1.8.8 and 1.9.x before 1.9.3 mishandles ElGamal encryption because it lacks exponent blinding to address a side-channel attack against mpi_powm, and the window size is not chosen appropriately. This, for example, affects use of ElGamal in OpenPGP.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2021-33560.json", + "https://access.redhat.com/security/cve/CVE-2021-33560", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33560", + "https://dev.gnupg.org/T5305", + "https://dev.gnupg.org/T5328", + "https://dev.gnupg.org/T5466", + "https://dev.gnupg.org/rCe8b7f10be275bcedb5fc05ed4837a89bfd605c61", + "https://eprint.iacr.org/2021/923", + "https://errata.almalinux.org/8/ALSA-2021-4409.html", + "https://linux.oracle.com/cve/CVE-2021-33560.html", + "https://linux.oracle.com/errata/ELSA-2022-9263.html", + "https://lists.debian.org/debian-lts-announce/2021/06/msg00021.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BKKTOIGFW2SGN3DO2UHHVZ7MJSYN4AAB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R7OAPCUGPF3VLA7QAJUQSL255D4ITVTL/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-33560", + "https://security.gentoo.org/glsa/202210-13", + "https://ubuntu.com/security/notices/USN-5080-1", + "https://ubuntu.com/security/notices/USN-5080-2", + "https://www.cve.org/CVERecord?id=CVE-2021-33560", + "https://www.oracle.com/security-alerts/cpuapr2022.html", + "https://www.oracle.com/security-alerts/cpujan2022.html", + "https://www.oracle.com/security-alerts/cpujul2022.html", + "https://www.oracle.com/security-alerts/cpuoct2021.html" + ], + "PublishedDate": "2021-06-08T11:15:00Z", + "LastModifiedDate": "2022-12-07T01:20:00Z" + }, + { + "VulnerabilityID": "CVE-2018-6829", + "PkgID": "libgcrypt20@1.8.7-6", + "PkgName": "libgcrypt20", + "InstalledVersion": "1.8.7-6", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-6829", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libgcrypt: ElGamal implementation doesn't have semantic security due to incorrectly encoded plaintexts possibly allowing to obtain sensitive information", + "Description": "cipher/elgamal.c in Libgcrypt through 1.8.2, when used to encrypt messages directly, improperly encodes plaintexts, which allows attackers to obtain sensitive information by reading ciphertext data (i.e., it does not have semantic security in face of a ciphertext-only attack). The Decisional Diffie-Hellman (DDH) assumption does not hold for Libgcrypt's ElGamal implementation.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-6829", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal", + "https://github.com/weikengchen/attack-on-libgcrypt-elgamal/wiki", + "https://lists.gnupg.org/pipermail/gcrypt-devel/2018-February/004394.html", + "https://nvd.nist.gov/vuln/detail/CVE-2018-6829", + "https://www.cve.org/CVERecord?id=CVE-2018-6829", + "https://www.oracle.com/security-alerts/cpujan2020.html" + ], + "PublishedDate": "2018-02-07T23:29:00Z", + "LastModifiedDate": "2020-01-15T20:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2509", + "VendorIDs": [ + "DSA-5203-1" + ], + "PkgID": "libgnutls30@3.7.1-5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.7.1-5", + "FixedVersion": "3.7.1-5+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2509", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Double free during gnutls_pkcs7_verify", + "Description": "A vulnerability found in gnutls. This security flaw happens because of a double free error occurs during verification of pkcs7 signatures in gnutls_pkcs7_verify function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6854", + "https://access.redhat.com/security/cve/CVE-2022-2509", + "https://bugzilla.redhat.com/2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2076626", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108635", + "https://bugzilla.redhat.com/show_bug.cgi?id=2108977", + "https://bugzilla.redhat.com/show_bug.cgi?id=2119770", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2509", + "https://errata.almalinux.org/9/ALSA-2022-6854.html", + "https://errata.rockylinux.org/RLSA-2022:6854", + "https://gnutls.org/security-new.html (GNUTLS-SA-2022-07-07)", + "https://gnutls.org/security-new.html#GNUTLS-SA-2022-07-07", + "https://linux.oracle.com/cve/CVE-2022-2509.html", + "https://linux.oracle.com/errata/ELSA-2022-7105.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00002.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6FL27JS3VM74YEQU7PGB62USO3KSBYZX/", + "https://lists.gnupg.org/pipermail/gnutls-help/2022-July/004746.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2509", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2509", + "https://www.debian.org/security/2022/dsa-5203" + ], + "PublishedDate": "2022-08-01T14:15:00Z", + "LastModifiedDate": "2022-08-19T12:10:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0361", + "VendorIDs": [ + "DSA-5349-1" + ], + "PkgID": "libgnutls30@3.7.1-5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.7.1-5", + "FixedVersion": "3.7.1-5+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0361", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing side-channel in the TLS RSA key exchange code", + "Description": "A timing side-channel in the handling of RSA ClientKeyExchange messages was discovered in GnuTLS. This side-channel can be sufficient to recover the key encrypted in the RSA ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption the attacker would need to send a large amount of specially crafted messages to the vulnerable server. By recovering the secret from the ClientKeyExchange message, the attacker would be able to decrypt the application data exchanged over that connection.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-203" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:1141", + "https://access.redhat.com/security/cve/CVE-2023-0361", + "https://bugzilla.redhat.com/2162596", + "https://bugzilla.redhat.com/show_bug.cgi?id=2131152", + "https://bugzilla.redhat.com/show_bug.cgi?id=2162596", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0361", + "https://errata.almalinux.org/9/ALSA-2023-1141.html", + "https://errata.rockylinux.org/RLSA-2023:1569", + "https://github.com/tlsfuzzer/tlsfuzzer/pull/679", + "https://gitlab.com/gnutls/gnutls/-/issues/1050", + "https://gnutls.org/security-new.html#GNUTLS-SA-2020-07-14", + "https://linux.oracle.com/cve/CVE-2023-0361.html", + "https://linux.oracle.com/errata/ELSA-2023-1569.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00015.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UFIA3X4IZ3CW7SRQ2UHNHNPMRIAWF2FI/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/WS4KVDOG6QTALWHC2QE4Y7VPDRMLTRWQ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z634YBXAJ5VLDI62IOPBVP5K6YFHAWCY/", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0361", + "https://security.netapp.com/advisory/ntap-20230324-0005/", + "https://ubuntu.com/security/notices/USN-5901-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0361" + ], + "PublishedDate": "2023-02-15T18:15:00Z", + "LastModifiedDate": "2023-05-23T17:22:00Z" + }, + { + "VulnerabilityID": "CVE-2021-4209", + "PkgID": "libgnutls30@3.7.1-5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.7.1-5", + "FixedVersion": "3.7.1-5+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-4209", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "GnuTLS: Null pointer dereference in MD_UPDATE", + "Description": "A NULL pointer dereference flaw was found in GnuTLS. As Nettle's hash update functions internally call memcpy, providing zero-length input may cause undefined behavior. This flaw leads to a denial of service after authentication in rare circumstances.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-476" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-4209", + "https://bugzilla.redhat.com/show_bug.cgi?id=2044156", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-4209", + "https://gitlab.com/gnutls/gnutls/-/commit/3db352734472d851318944db13be73da61300568", + "https://gitlab.com/gnutls/gnutls/-/issues/1306", + "https://gitlab.com/gnutls/gnutls/-/merge_requests/1503", + "https://nvd.nist.gov/vuln/detail/CVE-2021-4209", + "https://security.netapp.com/advisory/ntap-20220915-0005/", + "https://ubuntu.com/security/notices/USN-5550-1", + "https://ubuntu.com/security/notices/USN-5750-1", + "https://www.cve.org/CVERecord?id=CVE-2021-4209" + ], + "PublishedDate": "2022-08-24T16:15:00Z", + "LastModifiedDate": "2022-10-27T16:57:00Z" + }, + { + "VulnerabilityID": "CVE-2011-3389", + "PkgID": "libgnutls30@3.7.1-5", + "PkgName": "libgnutls30", + "InstalledVersion": "3.7.1-5", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-3389", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTPS: block-wise chosen-plaintext attack against SSL/TLS (BEAST)", + "Description": "The SSL protocol, as used in certain configurations in Microsoft Windows and Microsoft Internet Explorer, Mozilla Firefox, Google Chrome, Opera, and other products, encrypts data by using CBC mode with chained initialization vectors, which allows man-in-the-middle attackers to obtain plaintext HTTP headers via a blockwise chosen-boundary attack (BCBA) on an HTTPS session, in conjunction with JavaScript code that uses (1) the HTML5 WebSocket API, (2) the Java URLConnection API, or (3) the Silverlight WebClient API, aka a \"BEAST\" attack.", + "Severity": "LOW", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V2Score": 4.3 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:N/A:N", + "V2Score": 4.3 + } + }, + "References": [ + "http://arcticdog.wordpress.com/2012/08/29/beast-openssl-and-apache/", + "http://blog.mozilla.com/security/2011/09/27/attack-against-tls-protected-communications/", + "http://blogs.technet.com/b/msrc/archive/2011/09/26/microsoft-releases-security-advisory-2588513.aspx", + "http://blogs.technet.com/b/srd/archive/2011/09/26/is-ssl-broken-more-about-security-advisory-2588513.aspx", + "http://curl.haxx.se/docs/adv_20120124B.html", + "http://downloads.asterisk.org/pub/security/AST-2016-001.html", + "http://ekoparty.org/2011/juliano-rizzo.php", + "http://eprint.iacr.org/2004/111", + "http://eprint.iacr.org/2006/136", + "http://googlechromereleases.blogspot.com/2011/10/chrome-stable-release.html", + "http://isc.sans.edu/diary/SSL+TLS+part+3+/11635", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00001.html", + "http://lists.apple.com/archives/Security-announce/2011//Oct/msg00002.html", + "http://lists.apple.com/archives/security-announce/2012/Feb/msg00000.html", + "http://lists.apple.com/archives/security-announce/2012/Jul/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/May/msg00001.html", + "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html", + "http://lists.apple.com/archives/security-announce/2013/Oct/msg00004.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00049.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-01/msg00051.html", + "http://lists.opensuse.org/opensuse-security-announce/2012-05/msg00009.html", + "http://lists.opensuse.org/opensuse-security-announce/2020-01/msg00040.html", + "http://marc.info/?l=bugtraq\u0026m=132750579901589\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=132872385320240\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=133365109612558\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=133728004526190\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=134254866602253\u0026w=2", + "http://marc.info/?l=bugtraq\u0026m=134254957702612\u0026w=2", + "http://my.opera.com/securitygroup/blog/2011/09/28/the-beast-ssl-tls-issue", + "http://osvdb.org/74829", + "http://rhn.redhat.com/errata/RHSA-2012-0508.html", + "http://rhn.redhat.com/errata/RHSA-2013-1455.html", + "http://secunia.com/advisories/45791", + "http://secunia.com/advisories/47998", + "http://secunia.com/advisories/48256", + "http://secunia.com/advisories/48692", + "http://secunia.com/advisories/48915", + "http://secunia.com/advisories/48948", + "http://secunia.com/advisories/49198", + "http://secunia.com/advisories/55322", + "http://secunia.com/advisories/55350", + "http://secunia.com/advisories/55351", + "http://security.gentoo.org/glsa/glsa-201203-02.xml", + "http://security.gentoo.org/glsa/glsa-201406-32.xml", + "http://support.apple.com/kb/HT4999", + "http://support.apple.com/kb/HT5001", + "http://support.apple.com/kb/HT5130", + "http://support.apple.com/kb/HT5281", + "http://support.apple.com/kb/HT5501", + "http://support.apple.com/kb/HT6150", + "http://technet.microsoft.com/security/advisory/2588513", + "http://vnhacker.blogspot.com/2011/09/beast.html", + "http://www.apcmedia.com/salestools/SJHN-7RKGNM/SJHN-7RKGNM_R4_EN.pdf", + "http://www.debian.org/security/2012/dsa-2398", + "http://www.educatedguesswork.org/2011/09/security_impact_of_the_rizzodu.html", + "http://www.ibm.com/developerworks/java/jdk/alerts/", + "http://www.imperialviolet.org/2011/09/23/chromeandbeast.html", + "http://www.insecure.cl/Beast-SSL.rar", + "http://www.kb.cert.org/vuls/id/864643", + "http://www.mandriva.com/security/advisories?name=MDVSA-2012:058", + "http://www.opera.com/docs/changelogs/mac/1151/", + "http://www.opera.com/docs/changelogs/mac/1160/", + "http://www.opera.com/docs/changelogs/unix/1151/", + "http://www.opera.com/docs/changelogs/unix/1160/", + "http://www.opera.com/docs/changelogs/windows/1151/", + "http://www.opera.com/docs/changelogs/windows/1160/", + "http://www.opera.com/support/kb/view/1004/", + "http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html", + "http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html", + "http://www.oracle.com/technetwork/topics/security/javacpuoct2011-443431.html", + "http://www.redhat.com/support/errata/RHSA-2011-1384.html", + "http://www.redhat.com/support/errata/RHSA-2012-0006.html", + "http://www.securityfocus.com/bid/49388", + "http://www.securityfocus.com/bid/49778", + "http://www.securitytracker.com/id/1029190", + "http://www.securitytracker.com/id?1025997", + "http://www.securitytracker.com/id?1026103", + "http://www.securitytracker.com/id?1026704", + "http://www.ubuntu.com/usn/USN-1263-1", + "http://www.us-cert.gov/cas/techalerts/TA12-010A.html", + "https://access.redhat.com/security/cve/CVE-2011-3389", + "https://blogs.oracle.com/sunsecurity/entry/multiple_vulnerabilities_in_fetchmail", + "https://bugzilla.novell.com/show_bug.cgi?id=719047", + "https://bugzilla.redhat.com/show_bug.cgi?id=737506", + "https://cert-portal.siemens.com/productcert/pdf/ssa-556833.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3389", + "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-006", + "https://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay?docId=emr_na-c03839862", + "https://hermes.opensuse.org/messages/13154861", + "https://hermes.opensuse.org/messages/13155432", + "https://ics-cert.us-cert.gov/advisories/ICSMA-18-058-02", + "https://linux.oracle.com/cve/CVE-2011-3389.html", + "https://linux.oracle.com/errata/ELSA-2011-1380.html", + "https://nvd.nist.gov/vuln/detail/CVE-2011-3389", + "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A14752", + "https://ubuntu.com/security/notices/USN-1263-1", + "https://www.cve.org/CVERecord?id=CVE-2011-3389" + ], + "PublishedDate": "2011-09-06T19:55:00Z", + "LastModifiedDate": "2022-11-29T15:56:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libgssapi-krb5-2@1.18.3-6+deb11u1", + "PkgName": "libgssapi-krb5-2", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libgssapi-krb5-2@1.18.3-6+deb11u1", + "PkgName": "libgssapi-krb5-2", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "libip4tc2@1.8.7-1", + "PkgName": "libip4tc2", + "InstalledVersion": "1.8.7-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "libip6tc2@1.8.7-1", + "PkgName": "libip6tc2", + "InstalledVersion": "1.8.7-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libk5crypto3@1.18.3-6+deb11u1", + "PkgName": "libk5crypto3", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libk5crypto3@1.18.3-6+deb11u1", + "PkgName": "libk5crypto3", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libkrb5-3@1.18.3-6+deb11u1", + "PkgName": "libkrb5-3", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libkrb5-3@1.18.3-6+deb11u1", + "PkgName": "libkrb5-3", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-42898", + "VendorIDs": [ + "DSA-5286-1" + ], + "PkgID": "libkrb5support0@1.18.3-6+deb11u1", + "PkgName": "libkrb5support0", + "InstalledVersion": "1.18.3-6+deb11u1", + "FixedVersion": "1.18.3-6+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-42898", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "integer overflow vulnerabilities in PAC parsing", + "Description": "PAC parsing in MIT Kerberos 5 (aka krb5) before 1.19.4 and 1.20.x before 1.20.1 has integer overflows that may lead to remote code execution (in KDC, kadmind, or a GSS or Kerberos application server) on 32-bit platforms (which have a resultant heap-based buffer overflow), and cause a denial of service on other platforms. This occurs in krb5_pac_parse in lib/krb5/krb/pac.c. Heimdal before 7.7.1 has \"a similar bug.\"", + "Severity": "HIGH", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:8637", + "https://access.redhat.com/security/cve/CVE-2022-42898", + "https://bugzilla.redhat.com/2140960", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140960", + "https://bugzilla.samba.org/show_bug.cgi?id=15203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42898", + "https://errata.almalinux.org/9/ALSA-2022-8637.html", + "https://errata.rockylinux.org/RLSA-2022:8637", + "https://github.com/heimdal/heimdal/security/advisories/GHSA-64mq-fvfj-5x3c", + "https://github.com/krb5/krb5/commit/ea92d2f0fcceb54a70910fa32e9a0d7a5afc3583", + "https://linux.oracle.com/cve/CVE-2022-42898.html", + "https://linux.oracle.com/errata/ELSA-2023-12104.html", + "https://mailman.mit.edu/pipermail/krbdev/2022-November/013576.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-42898", + "https://security.netapp.com/advisory/ntap-20230216-0008/", + "https://security.netapp.com/advisory/ntap-20230223-0001/", + "https://ubuntu.com/security/notices/USN-5800-1", + "https://ubuntu.com/security/notices/USN-5822-1", + "https://ubuntu.com/security/notices/USN-5822-2", + "https://ubuntu.com/security/notices/USN-5828-1", + "https://ubuntu.com/security/notices/USN-5936-1", + "https://web.mit.edu/kerberos/advisories/", + "https://web.mit.edu/kerberos/krb5-1.19/", + "https://web.mit.edu/kerberos/krb5-1.20/README-1.20.1.txt", + "https://www.cve.org/CVERecord?id=CVE-2022-42898", + "https://www.samba.org/samba/security/CVE-2022-42898.html" + ], + "PublishedDate": "2022-12-25T06:15:00Z", + "LastModifiedDate": "2023-02-23T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-5709", + "PkgID": "libkrb5support0@1.18.3-6+deb11u1", + "PkgName": "libkrb5support0", + "InstalledVersion": "1.18.3-6+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-5709", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "krb5: integer overflow in dbentry-\u003en_key_data in kadmin/dbutil/dump.c", + "Description": "An issue was discovered in MIT Kerberos 5 (aka krb5) through 1.16. There is a variable \"dbentry-\u003en_key_data\" in kadmin/dbutil/dump.c that can store 16-bit data but unknowingly the developer has assigned a \"u4\" variable to it, which is for 32-bit data. An attacker can use this vulnerability to affect other artifacts of the database as we know that a Kerberos database dump file contains trusted data.", + "Severity": "LOW", + "CweIDs": [ + "CWE-190" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", + "V3Score": 6.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2018-5709", + "https://github.com/poojamnit/Kerberos-V5-1.16-Vulnerabilities/tree/master/Integer%20Overflow", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2018-5709", + "https://www.cve.org/CVERecord?id=CVE-2018-5709" + ], + "PublishedDate": "2018-01-16T09:29:00Z", + "LastModifiedDate": "2021-02-25T17:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1271", + "VendorIDs": [ + "DSA-5123-1" + ], + "PkgID": "liblzma5@5.2.5-2", + "PkgName": "liblzma5", + "InstalledVersion": "5.2.5-2", + "FixedVersion": "5.2.5-2.1~deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1271", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "arbitrary-file-write vulnerability", + "Description": "An arbitrary file write vulnerability was found in GNU gzip's zgrep utility. When zgrep is applied on the attacker's chosen file name (for example, a crafted file name), this can overwrite an attacker's content to an arbitrary attacker-selected file. This flaw occurs due to insufficient validation when processing filenames with two or more newlines where selected content and the target file names are embedded in crafted multi-line file names. This flaw allows a remote, low privileged attacker to force zgrep to write arbitrary files on the system.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-20" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.8 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:4940", + "https://access.redhat.com/security/cve/CVE-2022-1271", + "https://bugzilla.redhat.com/2073310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2073310", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1271", + "https://errata.almalinux.org/9/ALSA-2022-4940.html", + "https://errata.rockylinux.org/RLSA-2022:4940", + "https://git.tukaani.org/?p=xz.git;a=commit;h=69d1b3fc29677af8ade8dc15dba83f0589cb63d6", + "https://linux.oracle.com/cve/CVE-2022-1271.html", + "https://linux.oracle.com/errata/ELSA-2022-5052.html", + "https://lists.gnu.org/r/bug-gzip/2022-04/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1271", + "https://security-tracker.debian.org/tracker/CVE-2022-1271", + "https://security.gentoo.org/glsa/202209-01", + "https://security.netapp.com/advisory/ntap-20220930-0006/", + "https://tukaani.org/xz/xzgrep-ZDI-CAN-16587.patch", + "https://ubuntu.com/security/notices/USN-5378-1", + "https://ubuntu.com/security/notices/USN-5378-2", + "https://ubuntu.com/security/notices/USN-5378-3", + "https://ubuntu.com/security/notices/USN-5378-4", + "https://www.cve.org/CVERecord?id=CVE-2022-1271", + "https://www.openwall.com/lists/oss-security/2022/04/07/8" + ], + "PublishedDate": "2022-08-31T16:15:00Z", + "LastModifiedDate": "2022-10-07T14:14:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1586", + "PkgID": "libpcre2-8-0@10.36-2", + "PkgName": "libpcre2-8-0", + "InstalledVersion": "10.36-2", + "FixedVersion": "10.36-2+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1586", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre2: Out-of-bounds read in compile_xclass_matchingpath in pcre2_jit_compile.c", + "Description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the compile_xclass_matchingpath() function of the pcre2_jit_compile.c file. This involves a unicode property matching issue in JIT-compiled regular expressions. The issue occurs because the character was not fully read in case-less matching within JIT.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:5809", + "https://access.redhat.com/security/cve/CVE-2022-1586", + "https://bugzilla.redhat.com/2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077976,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1586", + "https://errata.almalinux.org/8/ALSA-2022-5809.html", + "https://errata.rockylinux.org/RLSA-2022:5809", + "https://github.com/PCRE2Project/pcre2/commit/50a51cb7e67268e6ad417eb07c9de9bfea5cc55a,", + "https://github.com/PCRE2Project/pcre2/commit/d4fa336fbcc388f89095b184ba6d99422cfc676c", + "https://linux.oracle.com/cve/CVE-2022-1586.html", + "https://linux.oracle.com/errata/ELSA-2022-5809.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1586", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1586" + ], + "PublishedDate": "2022-05-16T21:15:00Z", + "LastModifiedDate": "2023-03-16T05:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1587", + "PkgID": "libpcre2-8-0@10.36-2", + "PkgName": "libpcre2-8-0", + "InstalledVersion": "10.36-2", + "FixedVersion": "10.36-2+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1587", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre2: Out-of-bounds read in get_recurse_data_length in pcre2_jit_compile.c", + "Description": "An out-of-bounds read vulnerability was discovered in the PCRE2 library in the get_recurse_data_length() function of the pcre2_jit_compile.c file. This issue affects recursions in JIT-compiled regular expressions caused by duplicate data transfers.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-1587", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077983,", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1587", + "https://github.com/PCRE2Project/pcre2/commit/03654e751e7f0700693526b67dfcadda6b42c9d0", + "https://linux.oracle.com/cve/CVE-2022-1587.html", + "https://linux.oracle.com/errata/ELSA-2022-5251.html", + "https://lists.debian.org/debian-lts-announce/2023/03/msg00014.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DWNG2NS3GINO6LQYUVC4BZLUQPJ3DYHA/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXINO3KKI5DICQ45E2FKD6MKVMGJLEKJ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/KAX7767BCUFC7JMDGP7GOQ5GIZCAUGBB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/M2GLQQUEY5VFM57CFYXVIFOXN2HUZPDM/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1587", + "https://security.netapp.com/advisory/ntap-20221028-0009/", + "https://ubuntu.com/security/notices/USN-5627-1", + "https://ubuntu.com/security/notices/USN-5627-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1587" + ], + "PublishedDate": "2022-05-16T21:15:00Z", + "LastModifiedDate": "2023-03-16T05:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-11164", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-11164", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: OP_KETRMAX feature in the match function in pcre_exec.c", + "Description": "In PCRE 8.41, the OP_KETRMAX feature in the match function in pcre_exec.c allows stack exhaustion (uncontrolled recursion) when processing a crafted regular expression.", + "Severity": "LOW", + "CweIDs": [ + "CWE-674" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:C", + "V3Vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 7.8, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "http://openwall.com/lists/oss-security/2017/07/11/3", + "http://www.openwall.com/lists/oss-security/2023/04/11/1", + "http://www.openwall.com/lists/oss-security/2023/04/12/1", + "http://www.securityfocus.com/bid/99575", + "https://access.redhat.com/security/cve/CVE-2017-11164", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11164", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2017-11164", + "https://www.cve.org/CVERecord?id=CVE-2017-11164" + ], + "PublishedDate": "2017-07-11T03:29:00Z", + "LastModifiedDate": "2023-04-12T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2017-16231", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-16231", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: self-recursive call in match() in pcre_exec.c leads to denial of service", + "Description": "** DISPUTED ** In PCRE 8.41, after compiling, a pcretest load test PoC produces a crash overflow in the function match() in pcre_exec.c because of a self-recursive call. NOTE: third parties dispute the relevance of this report, noting that there are options that can be used to limit the amount of stack that is used.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 2.1, + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "http://packetstormsecurity.com/files/150897/PCRE-8.41-Buffer-Overflow.html", + "http://seclists.org/fulldisclosure/2018/Dec/33", + "http://www.openwall.com/lists/oss-security/2017/11/01/11", + "http://www.openwall.com/lists/oss-security/2017/11/01/3", + "http://www.openwall.com/lists/oss-security/2017/11/01/7", + "http://www.openwall.com/lists/oss-security/2017/11/01/8", + "http://www.securityfocus.com/bid/101688", + "https://access.redhat.com/security/cve/CVE-2017-16231", + "https://bugs.exim.org/show_bug.cgi?id=2047", + "https://nvd.nist.gov/vuln/detail/CVE-2017-16231", + "https://www.cve.org/CVERecord?id=CVE-2017-16231" + ], + "PublishedDate": "2019-03-21T15:59:00Z", + "LastModifiedDate": "2019-04-02T13:55:00Z" + }, + { + "VulnerabilityID": "CVE-2017-7245", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7245", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 4) or possibly have unspecified other impact via a crafted file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7245", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7245", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7245" + ], + "PublishedDate": "2017-03-23T21:59:00Z", + "LastModifiedDate": "2018-08-17T10:29:00Z" + }, + { + "VulnerabilityID": "CVE-2017-7246", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2017-7246", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: stack-based buffer overflow write in pcre32_copy_substring", + "Description": "Stack-based buffer overflow in the pcre32_copy_substring function in pcre_get.c in libpcre1 in PCRE 8.40 allows remote attackers to cause a denial of service (WRITE of size 268) or possibly have unspecified other impact via a crafted file.", + "Severity": "LOW", + "CweIDs": [ + "CWE-119" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.7 + } + }, + "References": [ + "http://www.securityfocus.com/bid/97067", + "https://access.redhat.com/errata/RHSA-2018:2486", + "https://access.redhat.com/security/cve/CVE-2017-7246", + "https://blogs.gentoo.org/ago/2017/03/20/libpcre-two-stack-based-buffer-overflow-write-in-pcre32_copy_substring-pcre_get-c/", + "https://nvd.nist.gov/vuln/detail/CVE-2017-7246", + "https://security.gentoo.org/glsa/201710-25", + "https://www.cve.org/CVERecord?id=CVE-2017-7246" + ], + "PublishedDate": "2017-03-23T21:59:00Z", + "LastModifiedDate": "2018-08-17T10:29:00Z" + }, + { + "VulnerabilityID": "CVE-2019-20838", + "PkgID": "libpcre3@2:8.39-13", + "PkgName": "libpcre3", + "InstalledVersion": "2:8.39-13", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-20838", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "pcre: Buffer over-read in JIT when UTF is disabled and \\X or \\R has fixed quantifier greater than 1", + "Description": "libpcre in PCRE before 8.43 allows a subject buffer over-read in JIT when UTF is disabled, and \\X or \\R has more than one fixed quantifier, a related issue to CVE-2019-20454.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 4.3, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2020/Dec/32", + "http://seclists.org/fulldisclosure/2021/Feb/14", + "https://access.redhat.com/security/cve/CVE-2019-20838", + "https://bugs.gentoo.org/717920", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848436", + "https://bugzilla.redhat.com/show_bug.cgi?id=1848444", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20838", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155", + "https://errata.almalinux.org/8/ALSA-2021-4373.html", + "https://errata.rockylinux.org/RLSA-2021:4373", + "https://linux.oracle.com/cve/CVE-2019-20838.html", + "https://linux.oracle.com/errata/ELSA-2021-4373.html", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772@%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2019-20838", + "https://support.apple.com/kb/HT211931", + "https://support.apple.com/kb/HT212147", + "https://ubuntu.com/security/notices/USN-5425-1", + "https://www.cve.org/CVERecord?id=CVE-2019-20838", + "https://www.pcre.org/original/changelog.txt" + ], + "PublishedDate": "2020-06-15T17:15:00Z", + "LastModifiedDate": "2021-09-22T14:22:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36084", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36084", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: use-after-free in __cil_verify_classperms()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __cil_verify_classpermission and __cil_pre_verify_helper).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36084", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31065", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/f34d3d30c8325e4847a6b696fe7a3936a8a361f3", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-417.yaml", + "https://linux.oracle.com/cve/CVE-2021-36084.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36084", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36084" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:16:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36085", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36085", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: use-after-free in __cil_verify_classperms()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in __cil_verify_classperms (called from __verify_map_perm_classperms and hashtab_map).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36085", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=31124", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/2d35fcc7e9e976a2346b1de20e54f8663e8a6cba", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-421.yaml", + "https://linux.oracle.com/cve/CVE-2021-36085.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36085", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36085" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:26:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36086", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36086", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free in cil_reset_classpermission()", + "Description": "The CIL compiler in SELinux 3.2 has a use-after-free in cil_reset_classpermission (called from cil_reset_classperms_set and cil_reset_classperms_list).", + "Severity": "LOW", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36086", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32177", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/c49a8ea09501ad66e799ea41b8154b6770fec2c8", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-536.yaml", + "https://linux.oracle.com/cve/CVE-2021-36086.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36086", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36086" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T03:27:00Z" + }, + { + "VulnerabilityID": "CVE-2021-36087", + "PkgID": "libsepol1@3.1-1", + "PkgName": "libsepol1", + "InstalledVersion": "3.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-36087", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libsepol: heap-based buffer overflow in ebitmap_match_any()", + "Description": "The CIL compiler in SELinux 3.2 has a heap-based buffer over-read in ebitmap_match_any (called indirectly from cil_check_neverallow). This occurs because there is sometimes a lack of checks for invalid statements in an optional block.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V2Score": 2.1, + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 3.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2021-36087", + "https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=32675", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979662", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979664", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979666", + "https://bugzilla.redhat.com/show_bug.cgi?id=1979668", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36084", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36085", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36086", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-36087", + "https://errata.almalinux.org/8/ALSA-2021-4513.html", + "https://errata.rockylinux.org/RLSA-2021:4513", + "https://github.com/SELinuxProject/selinux/commit/340f0eb7f3673e8aacaf0a96cbfcd4d12a405521", + "https://github.com/google/oss-fuzz-vulns/blob/main/vulns/selinux/OSV-2021-585.yaml", + "https://linux.oracle.com/cve/CVE-2021-36087.html", + "https://linux.oracle.com/errata/ELSA-2021-4513.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/U7ZYR3PIJ75N6U2IONJWCKZ5L2NKJTGR/", + "https://lore.kernel.org/selinux/CAEN2sdqJKHvDzPnxS-J8grU8fSf32DDtx=kyh84OsCq_Vm+yaQ@mail.gmail.com/T/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-36087", + "https://ubuntu.com/security/notices/USN-5391-1", + "https://www.cve.org/CVERecord?id=CVE-2021-36087" + ], + "PublishedDate": "2021-07-01T03:15:00Z", + "LastModifiedDate": "2021-11-17T14:05:00Z" + }, + { + "VulnerabilityID": "CVE-2022-1292", + "VendorIDs": [ + "DSA-5139-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1292", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "c_rehash script allows command injection", + "Description": "The c_rehash script does not properly sanitise shell metacharacters to prevent command injection. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.3 (Affected 3.0.0,3.0.1,3.0.2). Fixed in OpenSSL 1.1.1o (Affected 1.1.1-1.1.1n). Fixed in OpenSSL 1.0.2ze (Affected 1.0.2-1.0.2zd).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-78" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 10, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.7 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-1292", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-953464.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1ad73b4d27bd8c1b369a3cd453681d3a4f1bb9b2", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=548d3f280a6e737673f5b61fce24bb100108dfeb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=e5fd1728ef4c7a5bf7c7a7163ca60370460a6e23", + "https://linux.oracle.com/cve/CVE-2022-1292.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VX4KWHPMKYJL6ZLW4M5IU7E5UV5ZWJQU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZNU5M7BXMML26G3GPYKFGQYPQDRSNKDD/", + "https://mta.openssl.org/pipermail/openssl-announce/2022-May/000224.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1292", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2022-0011", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220602-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://ubuntu.com/security/notices/USN-5402-1", + "https://ubuntu.com/security/notices/USN-5402-2", + "https://www.cve.org/CVERecord?id=CVE-2022-1292", + "https://www.debian.org/security/2022/dsa-5139", + "https://www.openssl.org/news/secadv/20220503.txt", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-05-03T16:15:00Z", + "LastModifiedDate": "2023-02-14T12:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2068", + "VendorIDs": [ + "DSA-5169-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u3", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2068", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "the c_rehash script allows command injection", + "Description": "In addition to the c_rehash shell command injection identified in CVE-2022-1292, further circumstances where the c_rehash script does not properly sanitise shell metacharacters to prevent command injection were found by code review. When the CVE-2022-1292 was fixed it was not discovered that there are other places in the script where the file names of certificates being hashed were possibly passed to a command executed through the shell. This script is distributed by some operating systems in a manner where it is automatically executed. On such operating systems, an attacker could execute arbitrary commands with the privileges of the script. Use of the c_rehash script is considered obsolete and should be replaced by the OpenSSL rehash command line tool. Fixed in OpenSSL 3.0.4 (Affected 3.0.0,3.0.1,3.0.2,3.0.3). Fixed in OpenSSL 1.1.1p (Affected 1.1.1-1.1.1o). Fixed in OpenSSL 1.0.2zf (Affected 1.0.2-1.0.2ze).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-78" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 10, + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 6.7 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2068", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c9c35870601b4a44d86ddbf512b38df38285cfa", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=7a9c027159fe9e1bbc2cd38a8a2914bff0d5abd9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9639817dac8bbbaa64d09efad7464ccc405527c7", + "https://linux.oracle.com/cve/CVE-2022-2068.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/6WZZBKUHQFGSKGNXXKICSRPL7AMVW5M5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2068", + "https://security.netapp.com/advisory/ntap-20220707-0008/", + "https://ubuntu.com/security/notices/USN-5488-1", + "https://ubuntu.com/security/notices/USN-5488-2", + "https://www.cve.org/CVERecord?id=CVE-2022-2068", + "https://www.debian.org/security/2022/dsa-5169", + "https://www.openssl.org/news/secadv/20220621.txt" + ], + "PublishedDate": "2022-06-21T15:15:00Z", + "LastModifiedDate": "2023-03-01T16:23:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4450", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4450", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "double free after calling PEM_read_bio_ex", + "Description": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-415" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4450", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b", + "https://github.com/advisories/GHSA-v5w6-wcm8-jm4q", + "https://linux.oracle.com/cve/CVE-2022-4450.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4450", + "https://rustsec.org/advisories/RUSTSEC-2023-0010.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4450", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0215", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0215", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "use-after-free following BIO_new_NDEF", + "Description": "The public API function BIO_new_NDEF is a helper function used for streaming\nASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\nSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\nend user applications.\n\nThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\nBIO onto the front of it to form a BIO chain, and then returns the new head of\nthe BIO chain to the caller. Under certain conditions, for example if a CMS\nrecipient public key is invalid, the new filter BIO is freed and the function\nreturns a NULL result indicating a failure. However, in this case, the BIO chain\nis not properly cleaned up and the BIO passed by the caller still retains\ninternal pointers to the previously freed filter BIO. If the caller then goes on\nto call BIO_pop() on the BIO then a use-after-free will occur. This will most\nlikely result in a crash.\n\n\n\nThis scenario occurs directly in the internal function B64_write_ASN1() which\nmay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\nthe BIO. This internal function is in turn called by the public API functions\nPEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\nSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\n\nOther public API functions that may be impacted by this include\ni2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\ni2d_PKCS7_bio_stream.\n\nThe OpenSSL cms and smime command line applications are similarly affected.\n\n\n\n", + "Severity": "HIGH", + "CweIDs": [ + "CWE-416" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0215", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344", + "https://github.com/advisories/GHSA-r7jw-wp68-3xch", + "https://linux.oracle.com/cve/CVE-2023-0215.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0215", + "https://rustsec.org/advisories/RUSTSEC-2023-0009.html", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://security.netapp.com/advisory/ntap-20230427-0009/", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0215", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0286", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0286", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "X.400 address type confusion in X.509 GeneralName", + "Description": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-843" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 7.4 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2023-0286", + "https://access.redhat.com/security/cve/cve-2023-0286", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.2-relnotes.txt", + "https://ftp.openbsd.org/pub/OpenBSD/patches/7.2/common/018_x509.patch.sig", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2c6c9d439b484e1ba9830d8454a34fa4f80fdfe9", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2f7530077e0ef79d98718138716bc51ca0cad658", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fd2af07dc083a350c959147097003a14a5e8ac4d", + "https://github.com/advisories/GHSA-x4qr-2fvf-3mr5", + "https://github.com/pyca/cryptography/security/advisories/GHSA-x4qr-2fvf-3mr5", + "https://linux.oracle.com/cve/CVE-2023-0286.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0286", + "https://rustsec.org/advisories/RUSTSEC-2023-0006.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://ubuntu.com/security/notices/USN-5845-1", + "https://ubuntu.com/security/notices/USN-5845-2", + "https://www.cve.org/CVERecord?id=CVE-2023-0286", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-03-27T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0464", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0464", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Denial of service by excessive resource usage in verifying X509 policy constraints", + "Description": "A security vulnerability has been identified in all supported versions\n\nof OpenSSL related to the verification of X.509 certificate chains\nthat include policy constraints. Attackers may be able to exploit this\nvulnerability by creating a malicious certificate chain that triggers\nexponential use of computational resources, leading to a denial-of-service\n(DoS) attack on affected systems.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0464", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0464", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2dcd4f1e3115f38cefa43e3efbe9b801c27e642e", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=879f7080d7e141f415c79eaa3a8ac4a3dad0348b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0464", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0464", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230322.txt" + ], + "PublishedDate": "2023-03-22T17:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2650", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-2097", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-2097", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "AES OCB fails to encrypt some bytes", + "Description": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn't written. In the special case of \"in place\" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected. Fixed in OpenSSL 3.0.5 (Affected 3.0.0-3.0.4). Fixed in OpenSSL 1.1.1q (Affected 1.1.1-1.1.1p).", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-326" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2022:6224", + "https://access.redhat.com/security/cve/CVE-2022-2097", + "https://bugzilla.redhat.com/2081494", + "https://bugzilla.redhat.com/2087911", + "https://bugzilla.redhat.com/2087913", + "https://bugzilla.redhat.com/2097310", + "https://bugzilla.redhat.com/2104905", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2097310", + "https://bugzilla.redhat.com/show_bug.cgi?id=2100554", + "https://bugzilla.redhat.com/show_bug.cgi?id=2104905", + "https://cert-portal.siemens.com/productcert/pdf/ssa-332410.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1292", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2068", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097", + "https://errata.almalinux.org/9/ALSA-2022-6224.html", + "https://errata.rockylinux.org/RLSA-2022:5818", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=919925673d6c9cfed3c1085497f5dfbbed5fc431", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=a98f339ddd7e8f487d6e0088d4a9a42324885a93", + "https://github.com/advisories/GHSA-3wx7-46ch-7rq2", + "https://linux.oracle.com/cve/CVE-2022-2097.html", + "https://linux.oracle.com/errata/ELSA-2022-9751.html", + "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/R6CK57NBQFTPUMXAPJURCGXUYT76NQAK/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V6567JERRHHJW2GNGJGKDRNHR7SNPZK7/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VCMNWKERPBKOEBNL7CLTTX3ZZCZLH7XA/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-2097", + "https://rustsec.org/advisories/RUSTSEC-2022-0032.html", + "https://security.gentoo.org/glsa/202210-02", + "https://security.netapp.com/advisory/ntap-20220715-0011/", + "https://security.netapp.com/advisory/ntap-20230420-0008/", + "https://ubuntu.com/security/notices/USN-5502-1", + "https://www.cve.org/CVERecord?id=CVE-2022-2097", + "https://www.debian.org/security/2023/dsa-5343", + "https://www.openssl.org/news/secadv/20220705.txt" + ], + "PublishedDate": "2022-07-05T11:15:00Z", + "LastModifiedDate": "2023-04-20T09:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4304", + "VendorIDs": [ + "DSA-5343-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u4", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4304", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "timing attack in RSA Decryption implementation", + "Description": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher style attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.", + "Severity": "MEDIUM", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.9 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2165", + "https://access.redhat.com/security/cve/CVE-2022-4304", + "https://bugzilla.redhat.com/1960321", + "https://bugzilla.redhat.com/2164440", + "https://bugzilla.redhat.com/2164487", + "https://bugzilla.redhat.com/2164492", + "https://bugzilla.redhat.com/2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144000", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144003", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144006", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144008", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144010", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144012", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144015", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144017", + "https://bugzilla.redhat.com/show_bug.cgi?id=2144019", + "https://bugzilla.redhat.com/show_bug.cgi?id=2145170", + "https://bugzilla.redhat.com/show_bug.cgi?id=2158412", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164440", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164487", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164488", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164492", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164494", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164497", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164499", + "https://bugzilla.redhat.com/show_bug.cgi?id=2164500", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4203", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4304", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4450", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0215", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0216", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0217", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0286", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0401", + "https://errata.almalinux.org/9/ALSA-2023-2165.html", + "https://errata.rockylinux.org/RLSA-2023:0946", + "https://github.com/advisories/GHSA-p52g-cm5j-mjv4", + "https://linux.oracle.com/cve/CVE-2022-4304.html", + "https://linux.oracle.com/errata/ELSA-2023-2932.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4304", + "https://rustsec.org/advisories/RUSTSEC-2023-0007.html", + "https://ubuntu.com/security/notices/USN-5844-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4304", + "https://www.openssl.org/news/secadv/20230207.txt" + ], + "PublishedDate": "2023-02-08T20:15:00Z", + "LastModifiedDate": "2023-02-24T17:13:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0465", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0465", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Invalid certificate policies in leaf certificates are silently ignored", + "Description": "Applications that use a non-default option when verifying certificates may be\nvulnerable to an attack from a malicious CA to circumvent certain checks.\n\nInvalid certificate policies in leaf certificates are silently ignored by\nOpenSSL and other certificate policy checks are skipped for that certificate.\nA malicious CA could use this to deliberately assert invalid certificate policies\nin order to circumvent policy checking on the certificate altogether.\n\nPolicy processing is disabled by default but can be enabled by passing\nthe `-policy' argument to the command line utilities or by calling the\n`X509_VERIFY_PARAM_set1_policies()' function.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0465", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0465", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=10325176f3d3e98c6e2b3bf5ab1e3b334de6947a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=1dd43e0709fece299b15208f36cc7c76209ba0bb", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=b013765abfa80036dc779dd0e50602c57bb3bf95", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=facfb1ab745646e97a1920977ae4a9965ea61d5c", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0465", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0465", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-0466", + "VendorIDs": [ + "DSA-5417-1" + ], + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "FixedVersion": "1.1.1n-0+deb11u5", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-0466", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Certificate policy check not enabled", + "Description": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-0466", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-0466", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=0d16b7e99aafc0b4a6d729eec65a411a7e025f0a", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=51e8a84ce742db0f6c70510d0159dad8f7825908", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=73398dea26de9899fb4baa94098ad0a61f435c72", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=fc814a30fc4f0bc54fcea7d9a7462f5457aab061", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-0466", + "https://security.netapp.com/advisory/ntap-20230414-0001/", + "https://ubuntu.com/security/notices/USN-6039-1", + "https://www.cve.org/CVERecord?id=CVE-2023-0466", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230328.txt" + ], + "PublishedDate": "2023-03-28T15:15:00Z", + "LastModifiedDate": "2023-06-08T19:15:00Z" + }, + { + "VulnerabilityID": "CVE-2007-6755", + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-6755", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Dual_EC_DRBG: weak pseudo random number generator", + "Description": "The NIST SP 800-90A default statement of the Dual Elliptic Curve Deterministic Random Bit Generation (Dual_EC_DRBG) algorithm contains point Q constants with a possible relationship to certain \"skeleton key\" values, which might allow context-dependent attackers to defeat cryptographic protection mechanisms by leveraging knowledge of those values. NOTE: this is a preliminary CVE for Dual_EC_DRBG; future research may provide additional details about point Q and associated attacks, and could potentially lead to a RECAST or REJECT of this CVE.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + }, + "redhat": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 5.8 + } + }, + "References": [ + "http://arstechnica.com/security/2013/09/stop-using-nsa-influence-code-in-our-product-rsa-tells-customers/", + "http://blog.cryptographyengineering.com/2013/09/rsa-warns-developers-against-its-own.html", + "http://blog.cryptographyengineering.com/2013/09/the-many-flaws-of-dualecdrbg.html", + "http://rump2007.cr.yp.to/15-shumow.pdf", + "http://stream.wsj.com/story/latest-headlines/SS-2-63399/SS-2-332655/", + "http://threatpost.com/in-wake-of-latest-crypto-revelations-everything-is-suspect", + "http://www.securityfocus.com/bid/63657", + "https://access.redhat.com/security/cve/CVE-2007-6755", + "https://nvd.nist.gov/vuln/detail/CVE-2007-6755", + "https://www.cve.org/CVERecord?id=CVE-2007-6755", + "https://www.schneier.com/blog/archives/2007/11/the_strange_sto.html" + ], + "PublishedDate": "2013-10-11T22:55:00Z", + "LastModifiedDate": "2022-11-01T14:44:00Z" + }, + { + "VulnerabilityID": "CVE-2010-0928", + "PkgID": "libssl1.1@1.1.1n-0+deb11u1", + "PkgName": "libssl1.1", + "InstalledVersion": "1.1.1n-0+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2010-0928", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "openssl: RSA authentication weakness", + "Description": "OpenSSL 0.9.8i on the Gaisler Research LEON3 SoC on the Xilinx Virtex-II Pro FPGA uses a Fixed Width Exponentiation (FWE) algorithm for certain signature calculations, and does not verify the signature before providing it to a caller, which makes it easier for physically proximate attackers to determine the private key via a modified supply voltage for the microprocessor, related to a \"fault-based attack.\"", + "Severity": "LOW", + "CweIDs": [ + "CWE-310" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:H/Au:N/C:C/I:N/A:N", + "V2Score": 4 + } + }, + "References": [ + "http://rdist.root.org/2010/03/08/attacking-rsa-exponentiation-with-fault-injection/", + "http://www.eecs.umich.edu/%7Evaleria/research/publications/DATE10RSA.pdf", + "http://www.networkworld.com/news/2010/030410-rsa-security-attack.html", + "http://www.osvdb.org/62808", + "http://www.theregister.co.uk/2010/03/04/severe_openssl_vulnerability/", + "https://access.redhat.com/security/cve/CVE-2010-0928", + "https://exchange.xforce.ibmcloud.com/vulnerabilities/56750", + "https://nvd.nist.gov/vuln/detail/CVE-2010-0928", + "https://www.cve.org/CVERecord?id=CVE-2010-0928" + ], + "PublishedDate": "2010-03-05T19:30:00Z", + "LastModifiedDate": "2017-08-17T01:32:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3821", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in format_timespan() function", + "Description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821" + ], + "PublishedDate": "2022-11-08T22:15:00Z", + "LastModifiedDate": "2023-05-03T12:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4415", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "Description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3" + ], + "PublishedDate": "2023-01-11T15:15:00Z", + "LastModifiedDate": "2023-02-02T16:19:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4392", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + } + }, + "References": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392" + ], + "PublishedDate": "2013-10-28T22:55:00Z", + "LastModifiedDate": "2022-01-31T17:49:00Z" + }, + { + "VulnerabilityID": "CVE-2020-13529", + "PkgID": "libsystemd0@247.3-7", + "PkgName": "libsystemd0", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "Description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "Severity": "LOW", + "CweIDs": [ + "CWE-290" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V2Score": 2.9, + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529" + ], + "PublishedDate": "2021-05-10T16:15:00Z", + "LastModifiedDate": "2022-10-07T02:59:00Z" + }, + { + "VulnerabilityID": "CVE-2021-46848", + "PkgID": "libtasn1-6@4.16.0-2", + "PkgName": "libtasn1-6", + "InstalledVersion": "4.16.0-2", + "FixedVersion": "4.16.0-2+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-46848", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libtasn1: Out-of-bound access in ETYPE_OK", + "Description": "GNU Libtasn1 before 4.19.0 has an ETYPE_OK off-by-one array size check that affects asn1_encode_simple_der.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0343", + "https://access.redhat.com/security/cve/CVE-2021-46848", + "https://bugs.gentoo.org/866237", + "https://bugzilla.redhat.com/2140058", + "https://bugzilla.redhat.com/show_bug.cgi?id=2140058", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46848", + "https://errata.almalinux.org/9/ALSA-2023-0343.html", + "https://errata.rockylinux.org/RLSA-2023:0343", + "https://gitlab.com/gnutls/libtasn1/-/commit/44a700d2051a666235748970c2df047ff207aeb5", + "https://gitlab.com/gnutls/libtasn1/-/issues/32", + "https://linux.oracle.com/cve/CVE-2021-46848.html", + "https://linux.oracle.com/errata/ELSA-2023-0343.html", + "https://lists.debian.org/debian-lts-announce/2023/01/msg00003.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/AV4SHDJF2XLB4CUPTBPQQ6CLGZ5LKXPZ/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ECM2ELTVRYV4BZ5L5GMIRQE27RFHPAQ6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OGO7XST4EIJGX4B2ITZCYSWM24534BSU/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/V5LWOGF7QRMNFRUCZY6TDYQJVFI6MOQ2/", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46848", + "https://security.netapp.com/advisory/ntap-20221118-0006/", + "https://ubuntu.com/security/notices/USN-5707-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46848" + ], + "PublishedDate": "2022-10-24T14:15:00Z", + "LastModifiedDate": "2023-01-20T13:55:00Z" + }, + { + "VulnerabilityID": "CVE-2021-46828", + "VendorIDs": [ + "DSA-5200-1" + ], + "PkgID": "libtirpc-common@1.3.1-1", + "PkgName": "libtirpc-common", + "InstalledVersion": "1.3.1-1", + "FixedVersion": "1.3.1-1+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-46828", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libtirpc: DoS vulnerability with lots of connections", + "Description": "In libtirpc before 1.3.3rc1, remote attackers could exhaust the file descriptors of a process that uses libtirpc because idle TCP connections are mishandled. This can, in turn, lead to an svc_run infinite loop without accepting new connections.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://git.linux-nfs.org/?p=steved/libtirpc.git;a=commit;h=86529758570cef4c73fb9b9c4104fdc510f701ed", + "https://access.redhat.com/errata/RHSA-2022:8400", + "https://access.redhat.com/security/cve/CVE-2021-46828", + "https://bugzilla.redhat.com/2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118157", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46828", + "https://errata.almalinux.org/9/ALSA-2022-8400.html", + "https://errata.rockylinux.org/RLSA-2022:8400", + "https://linux.oracle.com/cve/CVE-2021-46828.html", + "https://linux.oracle.com/errata/ELSA-2022-8400.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00004.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46828", + "https://security.gentoo.org/glsa/202210-33", + "https://security.netapp.com/advisory/ntap-20221007-0004/", + "https://ubuntu.com/security/notices/USN-5538-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46828", + "https://www.debian.org/security/2022/dsa-5200" + ], + "PublishedDate": "2022-07-20T06:15:00Z", + "LastModifiedDate": "2022-12-02T20:02:00Z" + }, + { + "VulnerabilityID": "CVE-2021-46828", + "VendorIDs": [ + "DSA-5200-1" + ], + "PkgID": "libtirpc3@1.3.1-1", + "PkgName": "libtirpc3", + "InstalledVersion": "1.3.1-1", + "FixedVersion": "1.3.1-1+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2021-46828", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "libtirpc: DoS vulnerability with lots of connections", + "Description": "In libtirpc before 1.3.3rc1, remote attackers could exhaust the file descriptors of a process that uses libtirpc because idle TCP connections are mishandled. This can, in turn, lead to an svc_run infinite loop without accepting new connections.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "http://git.linux-nfs.org/?p=steved/libtirpc.git;a=commit;h=86529758570cef4c73fb9b9c4104fdc510f701ed", + "https://access.redhat.com/errata/RHSA-2022:8400", + "https://access.redhat.com/security/cve/CVE-2021-46828", + "https://bugzilla.redhat.com/2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2109352", + "https://bugzilla.redhat.com/show_bug.cgi?id=2118157", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-46828", + "https://errata.almalinux.org/9/ALSA-2022-8400.html", + "https://errata.rockylinux.org/RLSA-2022:8400", + "https://linux.oracle.com/cve/CVE-2021-46828.html", + "https://linux.oracle.com/errata/ELSA-2022-8400.html", + "https://lists.debian.org/debian-lts-announce/2022/08/msg00004.html", + "https://nvd.nist.gov/vuln/detail/CVE-2021-46828", + "https://security.gentoo.org/glsa/202210-33", + "https://security.netapp.com/advisory/ntap-20221007-0004/", + "https://ubuntu.com/security/notices/USN-5538-1", + "https://www.cve.org/CVERecord?id=CVE-2021-46828", + "https://www.debian.org/security/2022/dsa-5200" + ], + "PublishedDate": "2022-07-20T06:15:00Z", + "LastModifiedDate": "2022-12-02T20:02:00Z" + }, + { + "VulnerabilityID": "CVE-2022-3821", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-3821", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in format_timespan() function", + "Description": "An off-by-one Error issue was discovered in Systemd in format_timespan() function of time-util.c. An attacker could supply specific values for time and accuracy that leads to buffer overrun in format_timespan(), leading to a Denial of Service.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-193" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0336", + "https://access.redhat.com/security/cve/CVE-2022-3821", + "https://bugzilla.redhat.com/2139327", + "https://bugzilla.redhat.com/show_bug.cgi?id=2139327", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3821", + "https://errata.almalinux.org/9/ALSA-2023-0336.html", + "https://errata.rockylinux.org/RLSA-2023:0336", + "https://github.com/systemd/systemd/commit/9102c625a673a3246d7e73d8737f3494446bad4e", + "https://github.com/systemd/systemd/issues/23928", + "https://github.com/systemd/systemd/pull/23933", + "https://linux.oracle.com/cve/CVE-2022-3821.html", + "https://linux.oracle.com/errata/ELSA-2023-0336.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RVBQC2VLSDVQAPJTEMTREXDL4HYLXG2P/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-3821", + "https://security.gentoo.org/glsa/202305-15", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-3821" + ], + "PublishedDate": "2022-11-08T22:15:00Z", + "LastModifiedDate": "2023-05-03T12:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4415", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "FixedVersion": "247.3-7+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4415", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: local information leak due to systemd-coredump not respecting fs.suid_dumpable kernel setting", + "Description": "A vulnerability was found in systemd. This security flaw can cause a local information leak due to systemd-coredump not respecting the fs.suid_dumpable kernel setting.", + "Severity": "MEDIUM", + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0954", + "https://access.redhat.com/security/cve/CVE-2022-4415", + "https://bugzilla.redhat.com/2149063", + "https://bugzilla.redhat.com/2155515", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149063", + "https://bugzilla.redhat.com/show_bug.cgi?id=2155515", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4415", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45873", + "https://errata.almalinux.org/9/ALSA-2023-0954.html", + "https://errata.rockylinux.org/RLSA-2023:0954", + "https://github.com/systemd/systemd/commit/b7641425659243c09473cd8fb3aef2c0d4a3eb9c", + "https://linux.oracle.com/cve/CVE-2022-4415.html", + "https://linux.oracle.com/errata/ELSA-2023-0954.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4415", + "https://ubuntu.com/security/notices/USN-5928-1", + "https://www.cve.org/CVERecord?id=CVE-2022-4415", + "https://www.openwall.com/lists/oss-security/2022/12/21/3" + ], + "PublishedDate": "2023-01-11T15:15:00Z", + "LastModifiedDate": "2023-02-02T16:19:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4392", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4392", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "TOCTOU race condition when updating file permissions and SELinux security contexts", + "Description": "systemd, when updating file permissions, allows local users to change the permissions and SELinux security contexts for arbitrary files via a symlink attack on unspecified files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:P/I:P/A:N", + "V2Score": 3.3 + } + }, + "References": [ + "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725357", + "http://www.openwall.com/lists/oss-security/2013/10/01/9", + "https://access.redhat.com/security/cve/CVE-2013-4392", + "https://bugzilla.redhat.com/show_bug.cgi?id=859060", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4392", + "https://www.cve.org/CVERecord?id=CVE-2013-4392" + ], + "PublishedDate": "2013-10-28T22:55:00Z", + "LastModifiedDate": "2022-01-31T17:49:00Z" + }, + { + "VulnerabilityID": "CVE-2020-13529", + "PkgID": "libudev1@247.3-7", + "PkgName": "libudev1", + "InstalledVersion": "247.3-7", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-13529", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "systemd: DHCP FORCERENEW authentication not implemented can cause a system running the DHCP client to have its network reconfigured", + "Description": "An exploitable denial-of-service vulnerability exists in Systemd 245. A specially crafted DHCP FORCERENEW packet can cause a server running the DHCP client to be vulnerable to a DHCP ACK spoofing attack. An attacker can forge a pair of FORCERENEW and DCHP ACK packets to reconfigure the server.", + "Severity": "LOW", + "CweIDs": [ + "CWE-290" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:A/AC:M/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V2Score": 2.9, + "V3Score": 6.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H", + "V3Score": 6.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2021/08/04/2", + "http://www.openwall.com/lists/oss-security/2021/08/17/3", + "http://www.openwall.com/lists/oss-security/2021/09/07/3", + "https://access.redhat.com/security/cve/CVE-2020-13529", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13529", + "https://linux.oracle.com/cve/CVE-2020-13529.html", + "https://linux.oracle.com/errata/ELSA-2021-4361.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/42TMJVNYRY65B4QCJICBYOEIVZV3KUYI/", + "https://nvd.nist.gov/vuln/detail/CVE-2020-13529", + "https://security.gentoo.org/glsa/202107-48", + "https://security.netapp.com/advisory/ntap-20210625-0005/", + "https://talosintelligence.com/vulnerability_reports/TALOS-2020-1142", + "https://ubuntu.com/security/notices/USN-5013-1", + "https://ubuntu.com/security/notices/USN-5013-2", + "https://www.cve.org/CVERecord?id=CVE-2020-13529" + ], + "PublishedDate": "2021-05-10T16:15:00Z", + "LastModifiedDate": "2022-10-07T02:59:00Z" + }, + { + "VulnerabilityID": "CVE-2012-2663", + "PkgID": "libxtables12@1.8.7-1", + "PkgName": "libxtables12", + "InstalledVersion": "1.8.7-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2012-2663", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "iptables: --syn flag bypass", + "Description": "extensions/libxt_tcp.c in iptables through 1.4.21 does not match TCP SYN+FIN packets in --syn rules, which might allow remote attackers to bypass intended firewall restrictions via crafted packets. NOTE: the CVE-2012-6638 fix makes this issue less relevant.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:P", + "V2Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:P", + "V2Score": 6.4 + } + }, + "References": [ + "http://www.spinics.net/lists/netfilter-devel/msg21248.html", + "https://access.redhat.com/security/cve/CVE-2012-2663", + "https://bugzilla.redhat.com/show_bug.cgi?id=826702", + "https://nvd.nist.gov/vuln/detail/CVE-2012-2663", + "https://www.cve.org/CVERecord?id=CVE-2012-2663" + ], + "PublishedDate": "2014-02-15T14:57:00Z", + "LastModifiedDate": "2023-02-13T00:25:00Z" + }, + { + "VulnerabilityID": "CVE-2022-4899", + "PkgID": "libzstd1@1.4.8+dfsg-2.1", + "PkgName": "libzstd1", + "InstalledVersion": "1.4.8+dfsg-2.1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-4899", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "buffer overrun in util.c", + "Description": "A vulnerability was found in zstd v1.4.10, where an attacker can supply empty string as an argument to the command line tool to cause buffer overrun.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-4899", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4899", + "https://github.com/facebook/zstd/issues/3200", + "https://nvd.nist.gov/vuln/detail/CVE-2022-4899", + "https://www.cve.org/CVERecord?id=CVE-2022-4899" + ], + "PublishedDate": "2023-03-31T20:15:00Z", + "LastModifiedDate": "2023-04-07T01:19:00Z" + }, + { + "VulnerabilityID": "CVE-2007-5686", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-264" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N", + "V2Score": 4.9 + } + }, + "References": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "PublishedDate": "2007-10-28T17:08:00Z", + "LastModifiedDate": "2018-10-15T21:45:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4235", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "Severity": "LOW", + "CweIDs": [ + "CWE-367" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 3.3, + "V3Score": 4.7 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 3.7, + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235" + ], + "PublishedDate": "2019-12-03T15:15:00Z", + "LastModifiedDate": "2023-02-13T00:28:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19882", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.9, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882" + ], + "PublishedDate": "2019-12-18T16:15:00Z", + "LastModifiedDate": "2020-08-25T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29383", + "PkgID": "login@1:4.8.1-1", + "PkgName": "login", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Improper input validation in shadow-utils package utility chfn", + "Description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that \"cat /etc/passwd\" shows a rogue user account.", + "Severity": "LOW", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797" + ], + "PublishedDate": "2023-04-14T22:15:00Z", + "LastModifiedDate": "2023-04-24T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2007-5686", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2007-5686", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "initscripts in rPath Linux 1 sets insecure permissions for the /var/lo ...", + "Description": "initscripts in rPath Linux 1 sets insecure permissions for the /var/log/btmp file, which allows local users to obtain sensitive information regarding authentication attempts. NOTE: because sshd detects the insecure permissions and does not log certain events, this also prevents sshd from logging failed authentication attempts by remote attackers.", + "Severity": "LOW", + "CweIDs": [ + "CWE-264" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:C/I:N/A:N", + "V2Score": 4.9 + } + }, + "References": [ + "http://secunia.com/advisories/27215", + "http://www.securityfocus.com/archive/1/482129/100/100/threaded", + "http://www.securityfocus.com/archive/1/482857/100/0/threaded", + "http://www.securityfocus.com/bid/26048", + "http://www.vupen.com/english/advisories/2007/3474", + "https://issues.rpath.com/browse/RPL-1825" + ], + "PublishedDate": "2007-10-28T17:08:00Z", + "LastModifiedDate": "2018-10-15T21:45:00Z" + }, + { + "VulnerabilityID": "CVE-2013-4235", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2013-4235", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: TOCTOU race conditions by copying and removing directory trees", + "Description": "shadow: TOCTOU (time-of-check time-of-use) race condition when copying and removing directory trees", + "Severity": "LOW", + "CweIDs": [ + "CWE-367" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 3.3, + "V3Score": 4.7 + }, + "redhat": { + "V2Vector": "AV:L/AC:H/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N", + "V2Score": 3.7, + "V3Score": 4.4 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2013-4235", + "https://access.redhat.com/security/cve/cve-2013-4235", + "https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1998169", + "https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4235", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4235", + "https://github.com/shadow-maint/shadow/issues/317", + "https://github.com/shadow-maint/shadow/pull/545", + "https://lists.apache.org/thread.html/rf9fa47ab66495c78bb4120b0754dd9531ca2ff0430f6685ac9b07772%40%3Cdev.mina.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2013-4235", + "https://security-tracker.debian.org/tracker/CVE-2013-4235", + "https://security.gentoo.org/glsa/202210-26", + "https://ubuntu.com/security/notices/USN-5745-1", + "https://ubuntu.com/security/notices/USN-5745-2", + "https://www.cve.org/CVERecord?id=CVE-2013-4235" + ], + "PublishedDate": "2019-12-03T15:15:00Z", + "LastModifiedDate": "2023-02-13T00:28:00Z" + }, + { + "VulnerabilityID": "CVE-2019-19882", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2019-19882", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "shadow-utils: local users can obtain root access because setuid programs are misconfigured", + "Description": "shadow 4.8, in certain circumstances affecting at least Gentoo, Arch Linux, and Void Linux, allows local users to obtain root access because setuid programs are misconfigured. Specifically, this affects shadow 4.8 when compiled using --with-libpam but without explicitly passing --disable-account-tools-setuid, and without a PAM configuration suitable for use with setuid account management tools. This combination leads to account management tools (groupadd, groupdel, groupmod, useradd, userdel, usermod) that can easily be used by unprivileged local users to escalate privileges to root in multiple ways. This issue became much more relevant in approximately December 2019 when an unrelated bug was fixed (i.e., the chmod calls to suidusbins were fixed in the upstream Makefile which is now included in the release version 4.8).", + "Severity": "LOW", + "CweIDs": [ + "CWE-732" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:L/AC:M/Au:N/C:C/I:C/A:C", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V2Score": 6.9, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2019-19882", + "https://bugs.archlinux.org/task/64836", + "https://bugs.gentoo.org/702252", + "https://github.com/shadow-maint/shadow/commit/edf7547ad5aa650be868cf2dac58944773c12d75", + "https://github.com/shadow-maint/shadow/pull/199", + "https://github.com/void-linux/void-packages/pull/17580", + "https://nvd.nist.gov/vuln/detail/CVE-2019-19882", + "https://security.gentoo.org/glsa/202008-09", + "https://www.cve.org/CVERecord?id=CVE-2019-19882" + ], + "PublishedDate": "2019-12-18T16:15:00Z", + "LastModifiedDate": "2020-08-25T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-29383", + "PkgID": "passwd@1:4.8.1-1", + "PkgName": "passwd", + "InstalledVersion": "1:4.8.1-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-29383", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "Improper input validation in shadow-utils package utility chfn", + "Description": "In Shadow 4.13, it is possible to inject control characters into fields provided to the SUID program chfn (change finger). Although it is not possible to exploit this directly (e.g., adding a new user fails because \\n is in the block list), it is possible to misrepresent the /etc/passwd file when viewed. Use of \\r manipulations and Unicode characters to work around blocking of the : character make it possible to give the impression that a new user has been added. In other words, an adversary may be able to convince a system administrator to take the system offline (an indirect, social-engineered denial of service) by demonstrating that \"cat /etc/passwd\" shows a rogue user account.", + "Severity": "LOW", + "CweIDs": [ + "CWE-74" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", + "V3Score": 3.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2023-29383", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29383", + "https://github.com/shadow-maint/shadow/commit/e5905c4b84d4fb90aefcd96ee618411ebfac663d", + "https://github.com/shadow-maint/shadow/pull/687", + "https://nvd.nist.gov/vuln/detail/CVE-2023-29383", + "https://www.cve.org/CVERecord?id=CVE-2023-29383", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2023-29383-abusing-linux-chfn-to-misrepresent-etc-passwd/", + "https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=31797" + ], + "PublishedDate": "2023-04-14T22:15:00Z", + "LastModifiedDate": "2023-04-24T18:05:00Z" + }, + { + "VulnerabilityID": "CVE-2020-16156", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-16156", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "perl-CPAN: Bypass of verification of signatures in CHECKSUMS files", + "Description": "CPAN 2.28 allows Signature Verification Bypass.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-347" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P", + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V2Score": 6.8, + "V3Score": 7.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7.8 + } + }, + "References": [ + "http://blogs.perl.org/users/neilb/2021/11/addressing-cpan-vulnerabilities-related-to-checksums.html", + "https://access.redhat.com/security/cve/CVE-2020-16156", + "https://blog.hackeriet.no/cpan-signature-verification-vulnerabilities/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16156", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SD6RYOJII7HRJ6WVORFNVTYNOFY5JDXN/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SZ32AJIV4RHJMLWLU5QULGKMMIHYOMDC/", + "https://metacpan.org/pod/distribution/CPAN/scripts/cpan", + "https://nvd.nist.gov/vuln/detail/CVE-2020-16156", + "https://ubuntu.com/security/notices/USN-5689-1", + "https://ubuntu.com/security/notices/USN-5689-2", + "https://www.cve.org/CVERecord?id=CVE-2020-16156" + ], + "PublishedDate": "2021-12-13T18:15:00Z", + "LastModifiedDate": "2022-04-01T13:26:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31484", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31484", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "CPAN.pm before 2.35 does not verify TLS certificates when downloading ...", + "Description": "CPAN.pm before 2.35 does not verify TLS certificates when downloading distributions over HTTPS.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-31484", + "https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 (2.35-TRIAL)", + "https://github.com/andk/cpanpm/pull/175", + "https://metacpan.org/dist/CPAN/changes", + "https://ubuntu.com/security/notices/USN-6112-1", + "https://ubuntu.com/security/notices/USN-6112-2", + "https://www.openwall.com/lists/oss-security/2023/04/18/14" + ], + "PublishedDate": "2023-04-29T00:15:00Z", + "LastModifiedDate": "2023-05-08T17:11:00Z" + }, + { + "VulnerabilityID": "CVE-2011-4116", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2011-4116", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "perl: File::Temp insecure temporary file handling", + "Description": "_is_safe in the File::Temp module for Perl does not properly handle symlinks.", + "Severity": "LOW", + "CweIDs": [ + "CWE-59" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V2Vector": "AV:L/AC:M/Au:N/C:N/I:P/A:N", + "V2Score": 1.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2011/11/04/2", + "http://www.openwall.com/lists/oss-security/2011/11/04/4", + "https://access.redhat.com/security/cve/CVE-2011-4116", + "https://github.com/Perl-Toolchain-Gang/File-Temp/issues/14", + "https://nvd.nist.gov/vuln/detail/CVE-2011-4116", + "https://rt.cpan.org/Public/Bug/Display.html?id=69106", + "https://seclists.org/oss-sec/2011/q4/238", + "https://www.cve.org/CVERecord?id=CVE-2011-4116" + ], + "PublishedDate": "2020-01-31T18:15:00Z", + "LastModifiedDate": "2020-02-05T22:10:00Z" + }, + { + "VulnerabilityID": "CVE-2023-31486", + "PkgID": "perl-base@5.32.1-4+deb11u2", + "PkgName": "perl-base", + "InstalledVersion": "5.32.1-4+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-31486", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "HTTP::Tiny 0.082, a Perl core module since 5.13.9 and available standa ...", + "Description": "HTTP::Tiny 0.082, a Perl core module since 5.13.9 and available standalone on CPAN, has an insecure default TLS configuration where users must opt in to verify certificates.", + "Severity": "LOW", + "CweIDs": [ + "CWE-295" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 8.1 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/04/29/1", + "http://www.openwall.com/lists/oss-security/2023/05/03/3", + "http://www.openwall.com/lists/oss-security/2023/05/03/5", + "http://www.openwall.com/lists/oss-security/2023/05/07/2", + "https://blog.hackeriet.no/perl-http-tiny-insecure-tls-default-affects-cpan-modules/", + "https://hackeriet.github.io/cpan-http-tiny-overview/", + "https://www.openwall.com/lists/oss-security/2023/04/18/14", + "https://www.openwall.com/lists/oss-security/2023/05/03/4", + "https://www.reddit.com/r/perl/comments/111tadi/psa_httptiny_disabled_ssl_verification_by_default/" + ], + "PublishedDate": "2023-04-29T00:15:00Z", + "LastModifiedDate": "2023-05-08T17:06:00Z" + }, + { + "VulnerabilityID": "CVE-2005-2541", + "PkgID": "tar@1.34+dfsg-1", + "PkgName": "tar", + "InstalledVersion": "1.34+dfsg-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2005-2541", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "tar: does not properly warn the user when extracting setuid or setgid files", + "Description": "Tar 1.15.1 does not properly warn the user when extracting setuid or setgid files, which may allow local users or remote attackers to gain privileges.", + "Severity": "LOW", + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:C/I:C/A:C", + "V2Score": 10 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://marc.info/?l=bugtraq\u0026m=112327628230258\u0026w=2", + "https://access.redhat.com/security/cve/CVE-2005-2541", + "https://lists.apache.org/thread.html/rc713534b10f9daeee2e0990239fa407e2118e4aa9e88a7041177497c@%3Cissues.guacamole.apache.org%3E", + "https://nvd.nist.gov/vuln/detail/CVE-2005-2541", + "https://www.cve.org/CVERecord?id=CVE-2005-2541" + ], + "PublishedDate": "2005-08-10T04:00:00Z", + "LastModifiedDate": "2021-06-18T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-48303", + "PkgID": "tar@1.34+dfsg-1", + "PkgName": "tar", + "InstalledVersion": "1.34+dfsg-1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "debian", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-48303", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "heap buffer overflow at from_header() in list.c via specially crafted checksum", + "Description": "GNU Tar through 1.34 has a one-byte out-of-bounds read that results in use of uninitialized memory for a conditional jump. Exploitation to change the flow of control has not been demonstrated. The issue occurs in from_header in list.c via a V7 archive in which mtime has approximately 11 whitespace characters.", + "Severity": "LOW", + "CweIDs": [ + "CWE-125" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", + "V3Score": 5.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:0959", + "https://access.redhat.com/security/cve/CVE-2022-48303", + "https://bugzilla.redhat.com/2149722", + "https://bugzilla.redhat.com/show_bug.cgi?id=2149722", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48303", + "https://errata.almalinux.org/9/ALSA-2023-0959.html", + "https://errata.rockylinux.org/RLSA-2023:0959", + "https://linux.oracle.com/cve/CVE-2022-48303.html", + "https://linux.oracle.com/errata/ELSA-2023-0959.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CRY7VEL4AIG3GLIEVCTOXRZNSVYDYYUD/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5VQYCO52Z7GAVCLRYUITN7KXHLRZQS4/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-48303", + "https://savannah.gnu.org/bugs/?62387", + "https://savannah.gnu.org/patch/?10307", + "https://ubuntu.com/security/notices/USN-5900-1", + "https://ubuntu.com/security/notices/USN-5900-2", + "https://www.cve.org/CVERecord?id=CVE-2022-48303" + ], + "PublishedDate": "2023-01-30T04:15:00Z", + "LastModifiedDate": "2023-05-30T17:16:00Z" + }, + { + "VulnerabilityID": "CVE-2022-37434", + "VendorIDs": [ + "DSA-5218-1" + ], + "PkgID": "zlib1g@1:1.2.11.dfsg-2", + "PkgName": "zlib1g", + "InstalledVersion": "1:1.2.11.dfsg-2", + "FixedVersion": "1:1.2.11.dfsg-2+deb11u2", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-37434", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "heap-based buffer over-read and overflow in inflate() in inflate.c via a large gzip header extra field", + "Description": "zlib through 1.2.12 has a heap-based buffer over-read or buffer overflow in inflate in inflate.c via a large gzip header extra field. NOTE: only applications that call inflateGetHeader are affected. Some common applications bundle the affected zlib source code but may be unable to call inflateGetHeader (e.g., see the nodejs/node reference).", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "V3Score": 9.8 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H", + "V3Score": 7 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/Oct/37", + "http://seclists.org/fulldisclosure/2022/Oct/38", + "http://seclists.org/fulldisclosure/2022/Oct/41", + "http://seclists.org/fulldisclosure/2022/Oct/42", + "http://www.openwall.com/lists/oss-security/2022/08/05/2", + "http://www.openwall.com/lists/oss-security/2022/08/09/1", + "https://access.redhat.com/errata/RHSA-2022:8291", + "https://access.redhat.com/security/cve/CVE-2022-37434", + "https://bugzilla.redhat.com/2116639", + "https://bugzilla.redhat.com/show_bug.cgi?id=2053198", + "https://bugzilla.redhat.com/show_bug.cgi?id=2077431", + "https://bugzilla.redhat.com/show_bug.cgi?id=2081296", + "https://bugzilla.redhat.com/show_bug.cgi?id=2116639", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-37434", + "https://errata.almalinux.org/9/ALSA-2022-8291.html", + "https://errata.rockylinux.org/RLSA-2022:8291", + "https://github.com/curl/curl/issues/9271", + "https://github.com/ivd38/zlib_overflow", + "https://github.com/madler/zlib/blob/21767c654d31d2dccdde4330529775c6c5fd5389/zlib.h#L1062-L1063", + "https://github.com/madler/zlib/commit/eff308af425b67093bab25f80f1ae950166bece1", + "https://github.com/nodejs/node/blob/75b68c6e4db515f76df73af476eccf382bbcb00a/deps/zlib/inflate.c#L762-L764", + "https://linux.oracle.com/cve/CVE-2022-37434.html", + "https://linux.oracle.com/errata/ELSA-2023-1095.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00012.html", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/JWN4VE3JQR4O2SOUS5TXNLANRPMHWV4I/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/NMBOJ77A7T7PQCARMDUK75TE6LLESZ3O/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/PAVPQNCG3XRLCLNSQRM3KAN5ZFMVXVTY/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/X5U7OTKZSHY2I3ZFJSR2SHFHW72RKGDK/", + "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/YRQAI7H4M4RQZ2IWZUEEXECBE5D56BH2/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-37434", + "https://security.netapp.com/advisory/ntap-20220901-0005/", + "https://security.netapp.com/advisory/ntap-20230427-0007/", + "https://support.apple.com/kb/HT213488", + "https://support.apple.com/kb/HT213489", + "https://support.apple.com/kb/HT213490", + "https://support.apple.com/kb/HT213491", + "https://support.apple.com/kb/HT213493", + "https://support.apple.com/kb/HT213494", + "https://ubuntu.com/security/notices/USN-5570-1", + "https://ubuntu.com/security/notices/USN-5570-2", + "https://ubuntu.com/security/notices/USN-5573-1", + "https://www.cve.org/CVERecord?id=CVE-2022-37434", + "https://www.debian.org/security/2022/dsa-5218" + ], + "PublishedDate": "2022-08-05T07:15:00Z", + "LastModifiedDate": "2023-04-27T15:15:00Z" + }, + { + "VulnerabilityID": "CVE-2018-25032", + "VendorIDs": [ + "DSA-5111-1" + ], + "PkgID": "zlib1g@1:1.2.11.dfsg-2", + "PkgName": "zlib1g", + "InstalledVersion": "1:1.2.11.dfsg-2", + "FixedVersion": "1:1.2.11.dfsg-2+deb11u1", + "Layer": { + "Digest": "sha256:318b659927b487705e10851d9a078480b2ea4c2f3ed847a589840db2619213af", + "DiffID": "sha256:18c2069f7a9897b09047aa2ed5cae1ef0476729180af5053560a8d18e2b31dac" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2018-25032", + "DataSource": { + "ID": "debian", + "Name": "Debian Security Tracker", + "URL": "https://salsa.debian.org/security-tracker-team/security-tracker" + }, + "Title": "A flaw found in zlib when compressing (not decompressing) certain inputs", + "Description": "zlib before 1.2.12 allows memory corruption when deflating (i.e., when compressing) if the input has many distant matches.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-787" + ], + "CVSS": { + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H", + "V3Score": 8.2 + } + }, + "References": [ + "http://seclists.org/fulldisclosure/2022/May/33", + "http://seclists.org/fulldisclosure/2022/May/35", + "http://seclists.org/fulldisclosure/2022/May/38", + "http://www.openwall.com/lists/oss-security/2022/03/25/2", + "http://www.openwall.com/lists/oss-security/2022/03/26/1", + "https://access.redhat.com/errata/RHSA-2022:8420", + "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-25032.json", + "https://access.redhat.com/security/cve/CVE-2018-25032", + "https://bugzilla.redhat.com/2067945", + "https://cert-portal.siemens.com/productcert/pdf/ssa-333517.pdf", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032", + "https://errata.almalinux.org/9/ALSA-2022-8420.html", + "https://github.com/madler/zlib/commit/5c44459c3b28a9bd3283aaceab7c615f8020c531", + "https://github.com/madler/zlib/compare/v1.2.11...v1.2.12", + "https://github.com/madler/zlib/issues/605", + "https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.4", + "https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-v6gp-9mmm-c6p5", + "https://groups.google.com/g/ruby-security-ann/c/vX7qSjsvWis/m/TJWN4oOKBwAJ", + "https://linux.oracle.com/cve/CVE-2018-25032.html", + "https://linux.oracle.com/errata/ELSA-2022-9565.html", + "https://lists.debian.org/debian-lts-announce/2022/04/msg00000.html", + "https://lists.debian.org/debian-lts-announce/2022/05/msg00008.html", + "https://lists.debian.org/debian-lts-announce/2022/09/msg00023.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCZFIJBJTZ7CL5QXBFKTQ22Q26VINRUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DF62MVMH3QUGMBDCB3DY2ERQ6EBHTADB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JZZPTWRYQULAOL3AW7RZJNVZ2UONXCV4/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/NS2D2GFPFGOJUL4WQ3DUAY7HF4VWQ77F/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/VOKNP2L734AEL47NRYGVZIKEFOUBQY5Y/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XOKFMSNQ5D5WGMALBNBXU3GE442V74WU/", + "https://nvd.nist.gov/vuln/detail/CVE-2018-25032", + "https://security.gentoo.org/glsa/202210-42", + "https://security.netapp.com/advisory/ntap-20220526-0009/", + "https://security.netapp.com/advisory/ntap-20220729-0004/", + "https://support.apple.com/kb/HT213255", + "https://support.apple.com/kb/HT213256", + "https://support.apple.com/kb/HT213257", + "https://ubuntu.com/security/notices/USN-5355-1", + "https://ubuntu.com/security/notices/USN-5355-2", + "https://ubuntu.com/security/notices/USN-5359-1", + "https://ubuntu.com/security/notices/USN-5359-2", + "https://ubuntu.com/security/notices/USN-5739-1", + "https://www.cve.org/CVERecord?id=CVE-2018-25032", + "https://www.debian.org/security/2022/dsa-5111", + "https://www.openwall.com/lists/oss-security/2022/03/24/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/1", + "https://www.openwall.com/lists/oss-security/2022/03/28/3", + "https://www.oracle.com/security-alerts/cpujul2022.html" + ], + "PublishedDate": "2022-03-25T09:15:00Z", + "LastModifiedDate": "2023-04-27T17:50:00Z" + } + ] + }, + { + "Target": "bin/kindnetd", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2022-1996", + "PkgName": "github.com/emicklei/go-restful", + "InstalledVersion": "v2.9.5+incompatible", + "FixedVersion": "2.16.0+incompatible", + "Layer": { + "Digest": "sha256:073c86374fddd9db2e1dadfa66246f28a285c526b0d95bb3889cc529bbe3b0f1", + "DiffID": "sha256:61e34235b9d78fde426f3c20c58b855258e9515a53454e3c35ce871038f1a5c7" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-1996", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "Authorization Bypass Through User-Controlled Key", + "Description": "Authorization Bypass Through User-Controlled Key in GitHub repository emicklei/go-restful prior to v3.8.0.", + "Severity": "CRITICAL", + "CweIDs": [ + "CWE-639" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 9.1 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:P/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V2Score": 6.4, + "V3Score": 9.1 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", + "V3Score": 9.1 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-1996", + "https://github.com/advisories/GHSA-r48q-9g5r-8q2h", + "https://github.com/emicklei/go-restful/commit/926662532deb450272956c7bc573978464aae74e", + "https://github.com/emicklei/go-restful/commit/f292efff46ae17e9d104f865a60a39a2ae9402f1", + "https://github.com/emicklei/go-restful/commit/fd3c327a379ce08c68ef18765bdc925f5d9bad10", + "https://github.com/emicklei/go-restful/issues/489", + "https://huntr.dev/bounties/be837427-415c-4d8c-808b-62ce20aa84f1", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/575BLJ3Y2EQBRNTFR2OSQQ6L2W6UCST3/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/OBDD3Q23RCGAGHIXUCWBU6N3S4RNAKXB/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SO5QC2JFW2PXBWAE27OYYYL5SPFUBHTY/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/W56PP46JVZEKCANBKXFKRVSBBRRMCY6V/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZGQKWD6SE75PFBPFVSZYAKAVXKBZXKWS/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-1996", + "https://pkg.go.dev/vuln/GO-2022-0619", + "https://security.netapp.com/advisory/ntap-20220923-0005/", + "https://www.cve.org/CVERecord?id=CVE-2022-1996" + ], + "PublishedDate": "2022-06-08T13:15:00Z", + "LastModifiedDate": "2023-02-23T04:15:00Z" + }, + { + "VulnerabilityID": "CVE-2022-27664", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220127200216-cd36cc0744dd", + "FixedVersion": "0.0.0-20220906165146-f3363e06e74c", + "Layer": { + "Digest": "sha256:073c86374fddd9db2e1dadfa66246f28a285c526b0d95bb3889cc529bbe3b0f1", + "DiffID": "sha256:61e34235b9d78fde426f3c20c58b855258e9515a53454e3c35ce871038f1a5c7" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-27664", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "handle server errors after sending GOAWAY", + "Description": "In net/http in Go before 1.18.6 and 1.19.x before 1.19.1, attackers can cause a denial of service because an HTTP/2 connection can hang during closing if shutdown were preempted by a fatal error.", + "Severity": "HIGH", + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.5 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2357", + "https://access.redhat.com/security/cve/CVE-2022-27664", + "https://bugzilla.redhat.com/2107371", + "https://bugzilla.redhat.com/2107374", + "https://bugzilla.redhat.com/2107383", + "https://bugzilla.redhat.com/2107386", + "https://bugzilla.redhat.com/2107388", + "https://bugzilla.redhat.com/2113814", + "https://bugzilla.redhat.com/2124669", + "https://bugzilla.redhat.com/2132868", + "https://bugzilla.redhat.com/2132872", + "https://bugzilla.redhat.com/2161274", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913333", + "https://bugzilla.redhat.com/show_bug.cgi?id=1913338", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107371", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107374", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107383", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107386", + "https://bugzilla.redhat.com/show_bug.cgi?id=2107388", + "https://bugzilla.redhat.com/show_bug.cgi?id=2113814", + "https://bugzilla.redhat.com/show_bug.cgi?id=2124669", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28851", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28852", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1705", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27664", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30630", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30632", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30635", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32148", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32189", + "https://errata.almalinux.org/9/ALSA-2023-2357.html", + "https://errata.rockylinux.org/RLSA-2022:7129", + "https://github.com/advisories/GHSA-69cg-p879-7622", + "https://github.com/golang/go/commit/5bc9106458fc07851ac324a4157132a91b1f3479 (go1.18.6)", + "https://github.com/golang/go/commit/9cfe4e258b1c9d4a04a42539c21c7bdb2e227824 (go1.19.1)", + "https://github.com/golang/go/issues/54658", + "https://go.dev/cl/428735", + "https://go.dev/issue/54658", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s", + "https://groups.google.com/g/golang-announce/c/x49AQzIVX-s/m/0tgO0pjiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-27664.html", + "https://linux.oracle.com/errata/ELSA-2023-2802.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/JXKTHIGE5F576MAPFYCIJXNRGBSPISUF/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TXS2OQ57KZC5XZKK5UW4SYKPVQAHIOJX/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-27664", + "https://pkg.go.dev/vuln/GO-2022-0969", + "https://security.gentoo.org/glsa/202209-26", + "https://security.netapp.com/advisory/ntap-20220923-0004/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-27664" + ], + "PublishedDate": "2022-09-06T18:15:00Z", + "LastModifiedDate": "2022-10-28T12:42:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41723", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220127200216-cd36cc0744dd", + "FixedVersion": "0.7.0", + "Layer": { + "Digest": "sha256:073c86374fddd9db2e1dadfa66246f28a285c526b0d95bb3889cc529bbe3b0f1", + "DiffID": "sha256:61e34235b9d78fde426f3c20c58b855258e9515a53454e3c35ce871038f1a5c7" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41723", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "avoid quadratic complexity in HPACK decoding", + "Description": "A maliciously crafted HTTP/2 stream could cause excessive CPU consumption in the HPACK decoder, sufficient to cause a denial of service from a small number of small requests.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-400" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-41723", + "https://github.com/advisories/GHSA-vvpx-j8f3-3w6h", + "https://go.dev/cl/468135", + "https://go.dev/cl/468295", + "https://go.dev/issue/57855", + "https://groups.google.com/g/golang-announce/c/V0aBFqaFs_E", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/4MA5XS5DAOJ5PKKNG5TUXKPQOFHT5VBC/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RGW7GE2Z32ZT47UFAQFDRQE33B7Q7LMT/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RLBQ3A7ROLEQXQLXFDLNJ7MYPKG5GULE/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/XX3IMUTZKRQ73PBZM4E2JP4BKYH4C6XE/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41723", + "https://pkg.go.dev/vuln/GO-2023-1571", + "https://vuln.go.dev/ID/GO-2023-1571.json", + "https://www.cve.org/CVERecord?id=CVE-2022-41723" + ], + "PublishedDate": "2023-02-28T18:15:00Z", + "LastModifiedDate": "2023-05-16T10:50:00Z" + }, + { + "VulnerabilityID": "CVE-2022-41717", + "PkgName": "golang.org/x/net", + "InstalledVersion": "v0.0.0-20220127200216-cd36cc0744dd", + "FixedVersion": "0.4.0", + "Layer": { + "Digest": "sha256:073c86374fddd9db2e1dadfa66246f28a285c526b0d95bb3889cc529bbe3b0f1", + "DiffID": "sha256:61e34235b9d78fde426f3c20c58b855258e9515a53454e3c35ce871038f1a5c7" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-41717", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "excessive memory growth in a Go server accepting HTTP/2 requests", + "Description": "An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", + "V3Score": 5.3 + } + }, + "References": [ + "https://access.redhat.com/errata/RHSA-2023:2367", + "https://access.redhat.com/security/cve/CVE-2022-41717", + "https://bugzilla.redhat.com/2092793", + "https://bugzilla.redhat.com/2161274", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41717", + "https://errata.almalinux.org/9/ALSA-2023-2367.html", + "https://github.com/advisories/GHSA-xrjj-mj9h-534m", + "https://github.com/golang/go/commit/618120c165669c00a1606505defea6ca755cdc27 (go1.19.4)", + "https://github.com/golang/go/commit/76cad4edc29d28432a7a0aa27e87385d3d7db7a1 (go1.18.9)", + "https://go.dev/cl/455635", + "https://go.dev/cl/455717", + "https://go.dev/issue/56350", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU", + "https://groups.google.com/g/golang-announce/c/L_3rmdT0BMU/m/yZDrXjIiBQAJ", + "https://linux.oracle.com/cve/CVE-2022-41717.html", + "https://linux.oracle.com/errata/ELSA-2023-2866.html", + "https://nvd.nist.gov/vuln/detail/CVE-2022-41717", + "https://pkg.go.dev/vuln/GO-2022-1144", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-41717" + ], + "PublishedDate": "2022-12-08T20:15:00Z", + "LastModifiedDate": "2023-05-16T10:51:00Z" + }, + { + "VulnerabilityID": "CVE-2022-29526", + "PkgName": "golang.org/x/sys", + "InstalledVersion": "v0.0.0-20220209214540-3681064d5158", + "FixedVersion": "0.0.0-20220412211240-33da011f77ad", + "Layer": { + "Digest": "sha256:073c86374fddd9db2e1dadfa66246f28a285c526b0d95bb3889cc529bbe3b0f1", + "DiffID": "sha256:61e34235b9d78fde426f3c20c58b855258e9515a53454e3c35ce871038f1a5c7" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-29526", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "faccessat checks wrong group", + "Description": "Go before 1.17.10 and 1.18.x before 1.18.2 has Incorrect Privilege Assignment. When called with a non-zero flags parameter, the Faccessat function could incorrectly report that a file is accessible.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-269" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 5.3 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 5, + "V3Score": 5.3 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 6.2 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-29526", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526", + "https://github.com/advisories/GHSA-p782-xgp4-8hr8", + "https://github.com/golang/go/commit/f66925e854e71e0c54b581885380a490d7afa30c", + "https://github.com/golang/go/issues/52313", + "https://go.dev/cl/399539", + "https://go.dev/cl/400074", + "https://go.dev/issue/52313", + "https://groups.google.com/g/golang-announce", + "https://groups.google.com/g/golang-announce/c/Y5qrqw_lWdU", + "https://linux.oracle.com/cve/CVE-2022-29526.html", + "https://linux.oracle.com/errata/ELSA-2022-5337.html", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q6GE5EQGE4L2KRVGW4T75QVIYAXCLO5X/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/RQXU752ALW53OJAF5MG3WMR5CCZVLWW6/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Z55VUVGO7E5PJFXIOVAY373NZRHBNCI5/", + "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/ZY2SLWOQR4ZURQ7UBRZ7JIX6H6F5JHJR/", + "https://nvd.nist.gov/vuln/detail/CVE-2022-29526", + "https://pkg.go.dev/vuln/GO-2022-0493", + "https://security.gentoo.org/glsa/202208-02", + "https://security.netapp.com/advisory/ntap-20220729-0001/", + "https://ubuntu.com/security/notices/USN-6038-1", + "https://www.cve.org/CVERecord?id=CVE-2022-29526" + ], + "PublishedDate": "2022-06-23T17:15:00Z", + "LastModifiedDate": "2022-08-19T12:50:00Z" + }, + { + "VulnerabilityID": "CVE-2022-32149", + "PkgName": "golang.org/x/text", + "InstalledVersion": "v0.3.7", + "FixedVersion": "0.3.8", + "Layer": { + "Digest": "sha256:073c86374fddd9db2e1dadfa66246f28a285c526b0d95bb3889cc529bbe3b0f1", + "DiffID": "sha256:61e34235b9d78fde426f3c20c58b855258e9515a53454e3c35ce871038f1a5c7" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-32149", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "ParseAcceptLanguage takes a long time to parse complex tags", + "Description": "An attacker may cause a denial of service by crafting an Accept-Language header which ParseAcceptLanguage will take significant time to parse.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-772" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-32149", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32149", + "https://github.com/advisories/GHSA-69ch-w2m2-3vjp", + "https://github.com/golang/go/issues/56152", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c", + "https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c (v0.3.8)", + "https://go.dev/cl/442235", + "https://go.dev/issue/56152", + "https://groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ", + "https://groups.google.com/g/golang-dev/c/qfPIly0X7aU", + "https://nvd.nist.gov/vuln/detail/CVE-2022-32149", + "https://pkg.go.dev/vuln/GO-2022-1059", + "https://ubuntu.com/security/notices/USN-5873-1", + "https://www.cve.org/CVERecord?id=CVE-2022-32149" + ], + "PublishedDate": "2022-10-14T15:15:00Z", + "LastModifiedDate": "2022-10-18T17:41:00Z" + }, + { + "VulnerabilityID": "CVE-2022-28948", + "PkgName": "gopkg.in/yaml.v3", + "InstalledVersion": "v3.0.0-20210107192922-496545a6307b", + "FixedVersion": "3.0.0-20220521103104-8f96da9f5d5e", + "Layer": { + "Digest": "sha256:073c86374fddd9db2e1dadfa66246f28a285c526b0d95bb3889cc529bbe3b0f1", + "DiffID": "sha256:61e34235b9d78fde426f3c20c58b855258e9515a53454e3c35ce871038f1a5c7" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2022-28948", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "crash when attempting to deserialize invalid input", + "Description": "An issue in the Unmarshal function in Go-Yaml v3 causes the program to crash when attempting to deserialize invalid input.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-502" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "nvd": { + "V2Vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P", + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V2Score": 5, + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2022-28948", + "https://github.com/advisories/GHSA-hp87-p4gw-j4gq", + "https://github.com/go-yaml/yaml/commit/8f96da9f5d5eff988554c1aae1784627c4bf6754", + "https://github.com/go-yaml/yaml/issues/666", + "https://nvd.nist.gov/vuln/detail/CVE-2022-28948", + "https://security.netapp.com/advisory/ntap-20220923-0006/", + "https://www.cve.org/CVERecord?id=CVE-2022-28948" + ], + "PublishedDate": "2022-05-19T20:15:00Z", + "LastModifiedDate": "2022-10-28T19:06:00Z" + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "DaemonSet", + "Name": "kindnet", + "Results": [ + { + "Target": "DaemonSet/kindnet", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 130, + "Failures": 11, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV001", + "AVDID": "AVD-KSV-0001", + "Title": "Process can elevate its own privileges", + "Description": "A program inside the container can elevate its own privileges and run as root, which might give the program control over the container and node.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.allowPrivilegeEscalation' to false", + "Namespace": "builtin.kubernetes.KSV001", + "Query": "data.builtin.kubernetes.KSV001.deny", + "Resolution": "Set 'set containers[].securityContext.allowPrivilegeEscalation' to 'false'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv001", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv001" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 210, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV003", + "AVDID": "AVD-KSV-0003", + "Title": "Default capabilities not dropped", + "Description": "The container should drop all default capabilities and add only those that are needed for its execution.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should add 'ALL' to 'securityContext.capabilities.drop'", + "Namespace": "builtin.kubernetes.KSV003", + "Query": "data.builtin.kubernetes.KSV003.deny", + "Resolution": "Add 'ALL' to containers[].securityContext.capabilities.drop.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv003", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-capabilities-drop-index-all/", + "https://avd.aquasec.com/misconfig/ksv003" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 210, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV009", + "AVDID": "AVD-KSV-0009", + "Title": "Access to host network", + "Description": "Sharing the host’s network namespace permits processes in the pod to communicate with processes bound to the host’s loopback adapter.", + "Message": "DaemonSet 'kindnet' should not set 'spec.template.spec.hostNetwork' to true", + "Namespace": "builtin.kubernetes.KSV009", + "Query": "data.builtin.kubernetes.KSV009.deny", + "Resolution": "Do not set 'spec.template.spec.hostNetwork' to true.", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv009", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv009" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 157, + "EndLine": 238, + "Code": { + "Lines": [ + { + "Number": 157, + "Content": " revisionHistoryLimit: 10", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 158, + "Content": " selector:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " matchLabels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " app: kindnet", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " template:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " metadata:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " creationTimestamp: null", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " labels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " app: kindnet", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 166, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 210, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 210, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 210, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 210, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV022", + "AVDID": "AVD-KSV-0022", + "Title": "Non-default capabilities added", + "Description": "Adding NET_RAW or capabilities beyond the default set must be disallowed.", + "Message": "Container 'kindnet-cni' of DaemonSet 'kindnet' should not set 'securityContext.capabilities.add'", + "Namespace": "builtin.kubernetes.KSV022", + "Query": "data.builtin.kubernetes.KSV022.deny", + "Resolution": "Do not set spec.containers[*].securityContext.capabilities.add and spec.initContainers[*].securityContext.capabilities.add", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv022", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv022" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 210, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV023", + "AVDID": "AVD-KSV-0023", + "Title": "hostPath volumes mounted", + "Description": "HostPath volumes must be forbidden.", + "Message": "DaemonSet 'kindnet' should not set 'spec.template.volumes.hostPath'", + "Namespace": "builtin.kubernetes.KSV023", + "Query": "data.builtin.kubernetes.KSV023.deny", + "Resolution": "Do not set 'spec.volumes[*].hostPath'.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv023", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#baseline", + "https://avd.aquasec.com/misconfig/ksv023" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 157, + "EndLine": 238, + "Code": { + "Lines": [ + { + "Number": 157, + "Content": " revisionHistoryLimit: 10", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 158, + "Content": " selector:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 159, + "Content": " matchLabels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 160, + "Content": " app: kindnet", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " template:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " metadata:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " creationTimestamp: null", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " labels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " app: kindnet", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 166, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 210, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 210, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - name: HOST_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " apiVersion: v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " fieldPath: status.hostIP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - name: POD_IP", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " valueFrom:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " fieldRef:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "ServiceAccount", + "Name": "parser", + "Results": [ + { + "Target": "ServiceAccount/parser", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "ServiceAccount", + "Name": "trivy-k8s", + "Results": [ + { + "Target": "ServiceAccount/trivy-k8s", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-node-lease", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "attachdetach-controller", + "Results": [ + { + "Target": "ServiceAccount/attachdetach-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "certificate-controller", + "Results": [ + { + "Target": "ServiceAccount/certificate-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "clusterrole-aggregation-controller", + "Results": [ + { + "Target": "ServiceAccount/clusterrole-aggregation-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "bootstrap-signer", + "Results": [ + { + "Target": "ServiceAccount/bootstrap-signer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "coredns", + "Results": [ + { + "Target": "ServiceAccount/coredns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "daemon-set-controller", + "Results": [ + { + "Target": "ServiceAccount/daemon-set-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "cronjob-controller", + "Results": [ + { + "Target": "ServiceAccount/cronjob-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "deployment-controller", + "Results": [ + { + "Target": "ServiceAccount/deployment-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "endpointslice-controller", + "Results": [ + { + "Target": "ServiceAccount/endpointslice-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "disruption-controller", + "Results": [ + { + "Target": "ServiceAccount/disruption-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "endpoint-controller", + "Results": [ + { + "Target": "ServiceAccount/endpoint-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "endpointslicemirroring-controller", + "Results": [ + { + "Target": "ServiceAccount/endpointslicemirroring-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "Job", + "Name": "scan-trivy-k8s-kvmnm", + "Results": [ + { + "Target": "docker.io/aquasec/trivy:0.42.0 (alpine 3.18.0)", + "Class": "os-pkgs", + "Type": "alpine", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2023-2650", + "PkgID": "libcrypto3@3.1.0-r4", + "PkgName": "libcrypto3", + "InstalledVersion": "3.1.0-r4", + "FixedVersion": "3.1.1-r0", + "Layer": { + "Digest": "sha256:8a49fdb3b6a5ff2bd8ec6a86c05b2922a0f7454579ecc07637e94dfd1d0639b6", + "DiffID": "sha256:bb01bd7e32b58b6694c8c3622c230171f1cec24001a82068a8d30d338f420d6c" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + }, + { + "VulnerabilityID": "CVE-2023-2650", + "PkgID": "libssl3@3.1.0-r4", + "PkgName": "libssl3", + "InstalledVersion": "3.1.0-r4", + "FixedVersion": "3.1.1-r0", + "Layer": { + "Digest": "sha256:8a49fdb3b6a5ff2bd8ec6a86c05b2922a0f7454579ecc07637e94dfd1d0639b6", + "DiffID": "sha256:bb01bd7e32b58b6694c8c3622c230171f1cec24001a82068a8d30d338f420d6c" + }, + "SeveritySource": "nvd", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2023-2650", + "DataSource": { + "ID": "alpine", + "Name": "Alpine Secdb", + "URL": "https://secdb.alpinelinux.org/" + }, + "Title": "Possible DoS translating ASN.1 object identifiers", + "Description": "Issue summary: Processing some specially crafted ASN.1 object identifiers or\ndata containing them may be very slow.\n\nImpact summary: Applications that use OBJ_obj2txt() directly, or use any of\nthe OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message\nsize limit may experience notable to very long delays when processing those\nmessages, which may lead to a Denial of Service.\n\nAn OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers -\nmost of which have no size limit. OBJ_obj2txt() may be used to translate\nan ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL\ntype ASN1_OBJECT) to its canonical numeric text form, which are the\nsub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by\nperiods.\n\nWhen one of the sub-identifiers in the OBJECT IDENTIFIER is very large\n(these are sizes that are seen as absurdly large, taking up tens or hundreds\nof KiBs), the translation to a decimal number in text may take a very long\ntime. The time complexity is O(n^2) with 'n' being the size of the\nsub-identifiers in bytes (*).\n\nWith OpenSSL 3.0, support to fetch cryptographic algorithms using names /\nidentifiers in string form was introduced. This includes using OBJECT\nIDENTIFIERs in canonical numeric text form as identifiers for fetching\nalgorithms.\n\nSuch OBJECT IDENTIFIERs may be received through the ASN.1 structure\nAlgorithmIdentifier, which is commonly used in multiple protocols to specify\nwhat cryptographic algorithm should be used to sign or verify, encrypt or\ndecrypt, or digest passed data.\n\nApplications that call OBJ_obj2txt() directly with untrusted data are\naffected, with any version of OpenSSL. If the use is for the mere purpose\nof display, the severity is considered low.\n\nIn OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME,\nCMS, CMP/CRMF or TS. It also impacts anything that processes X.509\ncertificates, including simple things like verifying its signature.\n\nThe impact on TLS is relatively low, because all versions of OpenSSL have a\n100KiB limit on the peer's certificate chain. Additionally, this only\nimpacts clients, or servers that have explicitly enabled client\nauthentication.\n\nIn OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects,\nsuch as X.509 certificates. This is assumed to not happen in such a way\nthat it would cause a Denial of Service, so these versions are considered\nnot affected by this issue in such a way that it would be cause for concern,\nand the severity is therefore considered low.", + "Severity": "HIGH", + "CweIDs": [ + "CWE-770" + ], + "CVSS": { + "nvd": { + "V3Vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 7.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", + "V3Score": 5.9 + } + }, + "References": [ + "http://www.openwall.com/lists/oss-security/2023/05/30/1", + "https://access.redhat.com/security/cve/CVE-2023-2650", + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2650", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=423a2bc737a908ad0c77bda470b2b59dc879936b", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=853c5e56ee0b8650c73140816bb8b91d6163422c", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9e209944b35cf82368071f160a744b6178f9b098", + "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=db779b0e10b047f2585615e0b8f2acdf21f8544a", + "https://lists.debian.org/debian-lts-announce/2023/06/msg00011.html", + "https://nvd.nist.gov/vuln/detail/CVE-2023-2650", + "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0009", + "https://ubuntu.com/security/notices/USN-6119-1", + "https://www.cve.org/CVERecord?id=CVE-2023-2650", + "https://www.debian.org/security/2023/dsa-5417", + "https://www.openssl.org/news/secadv/20230530.txt" + ], + "PublishedDate": "2023-05-30T14:15:00Z", + "LastModifiedDate": "2023-06-09T00:15:00Z" + } + ] + }, + { + "Target": "usr/local/bin/trivy", + "Class": "lang-pkgs", + "Type": "gobinary", + "Vulnerabilities": [ + { + "VulnerabilityID": "CVE-2020-8911", + "PkgName": "github.com/aws/aws-sdk-go", + "InstalledVersion": "v1.44.245", + "Layer": { + "Digest": "sha256:f37db642112f82c5dc635254f8d6d0ebcec6fdc4c080b0df4bee624993a427ea", + "DiffID": "sha256:c28cfea923a7a296b5260268269fca5cdbb835c3a9a0eebfe8b11077bdcf8a2a" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-8911", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "aws/aws-sdk-go: CBC padding oracle issue in AWS S3 Crypto SDK for golang", + "Description": "A padding oracle vulnerability exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. The SDK allows users to encrypt files with AES-CBC without computing a Message Authentication Code (MAC), which then allows an attacker who has write access to the target's S3 bucket and can observe whether or not an endpoint with access to the key can decrypt a file, they can reconstruct the plaintext with (on average) 128*length (plaintext) queries to the endpoint, by exploiting CBC's ability to manipulate the bytes of the next block and PKCS5 padding errors. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "Severity": "MEDIUM", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N", + "V3Score": 5.6 + }, + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N", + "V2Score": 2.1, + "V3Score": 5.6 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N", + "V3Score": 5.6 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-8911", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869800", + "https://github.com/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-f5pg-7wfw-84q9", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8911", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8911" + ], + "PublishedDate": "2020-08-11T20:15:00Z", + "LastModifiedDate": "2020-08-18T13:37:00Z" + }, + { + "VulnerabilityID": "CVE-2020-8912", + "PkgName": "github.com/aws/aws-sdk-go", + "InstalledVersion": "v1.44.245", + "Layer": { + "Digest": "sha256:f37db642112f82c5dc635254f8d6d0ebcec6fdc4c080b0df4bee624993a427ea", + "DiffID": "sha256:c28cfea923a7a296b5260268269fca5cdbb835c3a9a0eebfe8b11077bdcf8a2a" + }, + "SeveritySource": "ghsa", + "PrimaryURL": "https://avd.aquasec.com/nvd/cve-2020-8912", + "DataSource": { + "ID": "go-vulndb", + "Name": "The Go Vulnerability Database", + "URL": "https://github.com/golang/vulndb" + }, + "Title": "aws-sdk-go: In-band key negotiation issue in AWS S3 Crypto SDK for golang", + "Description": "A vulnerability in the in-band key negotiation exists in the AWS S3 Crypto SDK for GoLang versions prior to V2. An attacker with write access to the targeted bucket can change the encryption algorithm of an object in the bucket, which can then allow them to change AES-GCM to AES-CTR. Using this in combination with a decryption oracle can reveal the authentication key used by AES-GCM as decrypting the GMAC tag leaves the authentication key recoverable as an algebraic equation. It is recommended to update your SDK to V2 or later, and re-encrypt your files.", + "Severity": "LOW", + "CweIDs": [ + "CWE-327" + ], + "CVSS": { + "ghsa": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.5 + }, + "nvd": { + "V2Vector": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V2Score": 2.1, + "V3Score": 2.5 + }, + "redhat": { + "V3Vector": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N", + "V3Score": 2.5 + } + }, + "References": [ + "https://access.redhat.com/security/cve/CVE-2020-8912", + "https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09", + "https://bugzilla.redhat.com/show_bug.cgi?id=1869801", + "https://github.com/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e", + "https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4", + "https://github.com/aws/aws-sdk-go/pull/3403", + "https://github.com/google/security-research/security/advisories/GHSA-7f33-f4f5-xwgw", + "https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc", + "https://nvd.nist.gov/vuln/detail/CVE-2020-8912", + "https://pkg.go.dev/vuln/GO-2022-0646", + "https://www.cve.org/CVERecord?id=CVE-2020-8912" + ], + "PublishedDate": "2020-08-11T20:15:00Z", + "LastModifiedDate": "2020-08-17T19:31:00Z" + } + ] + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "Job", + "Name": "scan-trivy-k8s-kvmnm", + "Error": "scan error: unable to initialize a scanner: unable to initialize a docker scanner: 4 errors occurred:\n\t* unable to inspect the image (docker.io/securecodebox/lurker:sha-b2542c45): Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?\n\t* containerd socket not found: /run/containerd/containerd.sock\n\t* unable to initialize Podman client: no podman socket found: stat podman/podman.sock: no such file or directory\n\t* GET https://index.docker.io/v2/securecodebox/lurker/manifests/sha-b2542c45: MANIFEST_UNKNOWN: manifest unknown; unknown tag=sha-b2542c45\n\n" + }, + { + "Namespace": "integration-tests", + "Kind": "Job", + "Name": "scan-trivy-k8s-kvmnm", + "Results": [ + { + "Target": "Job/scan-trivy-k8s-kvmnm", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 131, + "Failures": 14, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV011", + "AVDID": "AVD-KSV-0011", + "Title": "CPU not limited", + "Description": "Enforcing CPU limits prevents DoS via resource exhaustion.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'resources.limits.cpu'", + "Namespace": "builtin.kubernetes.KSV011", + "Query": "data.builtin.kubernetes.KSV011.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv011", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv011" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 165, + "EndLine": 192, + "Code": { + "Lines": [ + { + "Number": 165, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 166, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 174, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV012", + "AVDID": "AVD-KSV-0012", + "Title": "Runs as root user", + "Description": "'runAsNonRoot' forces the running image to run as a non-root user to ensure least privileges.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'securityContext.runAsNonRoot' to true", + "Namespace": "builtin.kubernetes.KSV012", + "Query": "data.builtin.kubernetes.KSV012.deny", + "Resolution": "Set 'containers[].securityContext.runAsNonRoot' to true.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv012", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv012" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 165, + "EndLine": 192, + "Code": { + "Lines": [ + { + "Number": 165, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 166, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 174, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV014", + "AVDID": "AVD-KSV-0014", + "Title": "Root file system is not read-only", + "Description": "An immutable root file system prevents applications from writing to their local disk. This can limit intrusions, as attackers will not be able to tamper with the file system or write foreign executables to disk.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'securityContext.readOnlyRootFilesystem' to true", + "Namespace": "builtin.kubernetes.KSV014", + "Query": "data.builtin.kubernetes.KSV014.deny", + "Resolution": "Change 'containers[].securityContext.readOnlyRootFilesystem' to 'true'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv014", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-readonlyrootfilesystem-true/", + "https://avd.aquasec.com/misconfig/ksv014" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 165, + "EndLine": 192, + "Code": { + "Lines": [ + { + "Number": 165, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 166, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 174, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV015", + "AVDID": "AVD-KSV-0015", + "Title": "CPU requests not specified", + "Description": "When containers have resource requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'resources.requests.cpu'", + "Namespace": "builtin.kubernetes.KSV015", + "Query": "data.builtin.kubernetes.KSV015.deny", + "Resolution": "Set 'containers[].resources.requests.cpu'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv015", + "References": [ + "https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-resource-requests-and-limits", + "https://avd.aquasec.com/misconfig/ksv015" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 165, + "EndLine": 192, + "Code": { + "Lines": [ + { + "Number": 165, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 166, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 174, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV016", + "AVDID": "AVD-KSV-0016", + "Title": "Memory requests not specified", + "Description": "When containers have memory requests specified, the scheduler can make better decisions about which nodes to place pods on, and how to deal with resource contention.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'resources.requests.memory'", + "Namespace": "builtin.kubernetes.KSV016", + "Query": "data.builtin.kubernetes.KSV016.deny", + "Resolution": "Set 'containers[].resources.requests.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv016", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv016" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 165, + "EndLine": 192, + "Code": { + "Lines": [ + { + "Number": 165, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 166, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 174, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV018", + "AVDID": "AVD-KSV-0018", + "Title": "Memory not limited", + "Description": "Enforcing memory limits prevents DoS via resource exhaustion.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'resources.limits.memory'", + "Namespace": "builtin.kubernetes.KSV018", + "Query": "data.builtin.kubernetes.KSV018.deny", + "Resolution": "Set a limit value under 'containers[].resources.limits.memory'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv018", + "References": [ + "https://kubesec.io/basics/containers-resources-limits-memory/", + "https://avd.aquasec.com/misconfig/ksv018" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 165, + "EndLine": 192, + "Code": { + "Lines": [ + { + "Number": 165, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 166, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 174, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'lurker' of Job 'scan-trivy-k8s-kvmnm' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 193, + "EndLine": 229, + "Code": { + "Lines": [ + { + "Number": 193, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 194, + "Content": " - --container", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " - --file", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " - /home/securecodebox/trivy-results.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " - --url", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 199, + "Content": " - http://securecodebox-operator-minio.securecodebox-system.svc.cluster.local:9000/securecodebox/scan-31d353c8-83d1-400f-9b61-2d1c8f0be319/trivy-results.json?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=admin%2F20230613%2Fus-east-1%2Fs3%2Faws4_request\u0026X-Amz-Date=20230613T124535Z\u0026X-Amz-Expires=43200\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=c0d91d68bfd5dcb292298f367e342eced801d6ef51f3be65073460ed7c095d38", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 200, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 201, + "Content": " - name: NAMESPACE", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 202, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV020", + "AVDID": "AVD-KSV-0020", + "Title": "Runs with low user ID", + "Description": "Force the container to run with user ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'securityContext.runAsUser' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV020", + "Query": "data.builtin.kubernetes.KSV020.deny", + "Resolution": "Set 'containers[].securityContext.runAsUser' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv020", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv020" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 165, + "EndLine": 192, + "Code": { + "Lines": [ + { + "Number": 165, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 166, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 174, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'lurker' of Job 'scan-trivy-k8s-kvmnm' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 193, + "EndLine": 229, + "Code": { + "Lines": [ + { + "Number": 193, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 194, + "Content": " - --container", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " - --file", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " - /home/securecodebox/trivy-results.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " - --url", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 199, + "Content": " - http://securecodebox-operator-minio.securecodebox-system.svc.cluster.local:9000/securecodebox/scan-31d353c8-83d1-400f-9b61-2d1c8f0be319/trivy-results.json?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=admin%2F20230613%2Fus-east-1%2Fs3%2Faws4_request\u0026X-Amz-Date=20230613T124535Z\u0026X-Amz-Expires=43200\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=c0d91d68bfd5dcb292298f367e342eced801d6ef51f3be65073460ed7c095d38", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 200, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 201, + "Content": " - name: NAMESPACE", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 202, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV021", + "AVDID": "AVD-KSV-0021", + "Title": "Runs with low group ID", + "Description": "Force the container to run with group ID \u003e 10000 to avoid conflicts with the host’s user table.", + "Message": "Container 'trivy' of Job 'scan-trivy-k8s-kvmnm' should set 'securityContext.runAsGroup' \u003e 10000", + "Namespace": "builtin.kubernetes.KSV021", + "Query": "data.builtin.kubernetes.KSV021.deny", + "Resolution": "Set 'containers[].securityContext.runAsGroup' to an integer \u003e 10000.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv021", + "References": [ + "https://kubesec.io/basics/containers-securitycontext-runasuser/", + "https://avd.aquasec.com/misconfig/ksv021" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 165, + "EndLine": 192, + "Code": { + "Lines": [ + { + "Number": 165, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 166, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 174, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 165, + "EndLine": 192, + "Code": { + "Lines": [ + { + "Number": 165, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 166, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 174, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV030", + "AVDID": "AVD-KSV-0030", + "Title": "Default Seccomp profile not set", + "Description": "The RuntimeDefault/Localhost seccomp profile must be required, or allow specific additional profiles.", + "Message": "Either Pod or Container should set 'securityContext.seccompProfile.type' to 'RuntimeDefault'", + "Namespace": "builtin.kubernetes.KSV030", + "Query": "data.builtin.kubernetes.KSV030.deny", + "Resolution": "Set 'spec.securityContext.seccompProfile.type', 'spec.containers[*].securityContext.seccompProfile' and 'spec.initContainers[*].securityContext.seccompProfile' to 'RuntimeDefault' or undefined.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv030", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv030" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 193, + "EndLine": 229, + "Code": { + "Lines": [ + { + "Number": 193, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 194, + "Content": " - --container", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " - --file", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " - /home/securecodebox/trivy-results.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " - --url", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 199, + "Content": " - http://securecodebox-operator-minio.securecodebox-system.svc.cluster.local:9000/securecodebox/scan-31d353c8-83d1-400f-9b61-2d1c8f0be319/trivy-results.json?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=admin%2F20230613%2Fus-east-1%2Fs3%2Faws4_request\u0026X-Amz-Date=20230613T124535Z\u0026X-Amz-Expires=43200\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=c0d91d68bfd5dcb292298f367e342eced801d6ef51f3be65073460ed7c095d38", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 200, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 201, + "Content": " - name: NAMESPACE", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 202, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 193, + "EndLine": 229, + "Code": { + "Lines": [ + { + "Number": 193, + "Content": " - args:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 194, + "Content": " - --container", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 195, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 196, + "Content": " - --file", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 197, + "Content": " - /home/securecodebox/trivy-results.json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 198, + "Content": " - --url", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 199, + "Content": " - http://securecodebox-operator-minio.securecodebox-system.svc.cluster.local:9000/securecodebox/scan-31d353c8-83d1-400f-9b61-2d1c8f0be319/trivy-results.json?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=admin%2F20230613%2Fus-east-1%2Fs3%2Faws4_request\u0026X-Amz-Date=20230613T124535Z\u0026X-Amz-Expires=43200\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=c0d91d68bfd5dcb292298f367e342eced801d6ef51f3be65073460ed7c095d38", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 200, + "Content": " env:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 201, + "Content": " - name: NAMESPACE", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 202, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV106", + "AVDID": "AVD-KSV-0106", + "Title": "Container capabilities must only include NET_BIND_SERVICE", + "Description": "Containers must drop ALL capabilities, and are only permitted to add back the NET_BIND_SERVICE capability.", + "Message": "container should drop all", + "Namespace": "builtin.kubernetes.KSV106", + "Query": "data.builtin.kubernetes.KSV106.deny", + "Resolution": "Set 'spec.containers[*].securityContext.capabilities.drop' to 'ALL' and only add 'NET_BIND_SERVICE' to 'spec.containers[*].securityContext.capabilities.add'.", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv106", + "References": [ + "https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted", + "https://avd.aquasec.com/misconfig/ksv106" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 165, + "EndLine": 192, + "Code": { + "Lines": [ + { + "Number": 165, + "Content": " - command:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 166, + "Content": " - trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - k8s", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 168, + "Content": " - --no-progress", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 169, + "Content": " - --format", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 170, + "Content": " - json", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 171, + "Content": " - --report", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " - all", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - --output", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 174, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "ephemeral-volume-controller", + "Results": [ + { + "Target": "ServiceAccount/ephemeral-volume-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "generic-garbage-collector", + "Results": [ + { + "Target": "ServiceAccount/generic-garbage-collector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "expand-controller", + "Results": [ + { + "Target": "ServiceAccount/expand-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "horizontal-pod-autoscaler", + "Results": [ + { + "Target": "ServiceAccount/horizontal-pod-autoscaler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "job-controller", + "Results": [ + { + "Target": "ServiceAccount/job-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "kindnet", + "Results": [ + { + "Target": "ServiceAccount/kindnet", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "kube-proxy", + "Results": [ + { + "Target": "ServiceAccount/kube-proxy", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "node-controller", + "Results": [ + { + "Target": "ServiceAccount/node-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "namespace-controller", + "Results": [ + { + "Target": "ServiceAccount/namespace-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "persistent-volume-binder", + "Results": [ + { + "Target": "ServiceAccount/persistent-volume-binder", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "pod-garbage-collector", + "Results": [ + { + "Target": "ServiceAccount/pod-garbage-collector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "pv-protection-controller", + "Results": [ + { + "Target": "ServiceAccount/pv-protection-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "pvc-protection-controller", + "Results": [ + { + "Target": "ServiceAccount/pvc-protection-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "replicaset-controller", + "Results": [ + { + "Target": "ServiceAccount/replicaset-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "replication-controller", + "Results": [ + { + "Target": "ServiceAccount/replication-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "root-ca-cert-publisher", + "Results": [ + { + "Target": "ServiceAccount/root-ca-cert-publisher", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "resourcequota-controller", + "Results": [ + { + "Target": "ServiceAccount/resourcequota-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "service-account-controller", + "Results": [ + { + "Target": "ServiceAccount/service-account-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "service-controller", + "Results": [ + { + "Target": "ServiceAccount/service-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "statefulset-controller", + "Results": [ + { + "Target": "ServiceAccount/statefulset-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "token-cleaner", + "Results": [ + { + "Target": "ServiceAccount/token-cleaner", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "ttl-after-finished-controller", + "Results": [ + { + "Target": "ServiceAccount/ttl-after-finished-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ServiceAccount", + "Name": "ttl-controller", + "Results": [ + { + "Target": "ServiceAccount/ttl-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "local-path-storage", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "local-path-storage", + "Kind": "ServiceAccount", + "Name": "local-path-provisioner-service-account", + "Results": [ + { + "Target": "ServiceAccount/local-path-provisioner-service-account", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "ServiceAccount", + "Name": "default", + "Results": [ + { + "Target": "ServiceAccount/default", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "ServiceAccount", + "Name": "securecodebox-operator", + "Results": [ + { + "Target": "ServiceAccount/securecodebox-operator", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "default", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "ServiceAccount", + "Name": "securecodebox-operator-minio", + "Results": [ + { + "Target": "ServiceAccount/securecodebox-operator-minio", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "demo-targets", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-node-lease", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "ConfigMap", + "Name": "cluster-info", + "Results": [ + { + "Target": "ConfigMap/cluster-info", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ConfigMap", + "Name": "coredns", + "Results": [ + { + "Target": "ConfigMap/coredns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ConfigMap", + "Name": "extension-apiserver-authentication", + "Results": [ + { + "Target": "ConfigMap/extension-apiserver-authentication", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "AVD-KSV-0110", + "AVDID": "AVD-KSV-01010", + "Title": "ConfigMap with sensitive content", + "Description": "Storing sensitive content such as usernames and email addresses in configMaps is unsafe", + "Message": "ConfigMap 'extension-apiserver-authentication' in 'kube-system' namespace stores sensitive contents in key(s) or value(s) '{\"requestheader-username-headers\"}'", + "Namespace": "builtin.kubernetes.KSV01010", + "Query": "data.builtin.kubernetes.KSV01010.deny", + "Resolution": "Remove sensitive content from configMap data value", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/avd-ksv-0110", + "References": [ + "https://avd.aquasec.com/misconfig/avd-ksv-0110" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ConfigMap", + "Name": "kube-proxy", + "Results": [ + { + "Target": "ConfigMap/kube-proxy", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ConfigMap", + "Name": "kubeadm-config", + "Results": [ + { + "Target": "ConfigMap/kubeadm-config", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "ConfigMap", + "Name": "kubelet-config", + "Results": [ + { + "Target": "ConfigMap/kubelet-config", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "local-path-storage", + "Kind": "ConfigMap", + "Name": "local-path-config", + "Results": [ + { + "Target": "ConfigMap/local-path-config", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "local-path-storage", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "Role", + "Name": "lurker", + "Results": [ + { + "Target": "Role/lurker", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "ConfigMap", + "Name": "kube-root-ca.crt", + "Results": [ + { + "Target": "ConfigMap/kube-root-ca.crt", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "Role", + "Name": "parser", + "Results": [ + { + "Target": "Role/parser", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "Role", + "Name": "kubeadm:bootstrap-signer-clusterinfo", + "Results": [ + { + "Target": "Role/kubeadm:bootstrap-signer-clusterinfo", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "Role", + "Name": "system:controller:bootstrap-signer", + "Results": [ + { + "Target": "Role/system:controller:bootstrap-signer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "Role 'system:controller:bootstrap-signer' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 37, + "EndLine": 44, + "Code": { + "Lines": [ + { + "Number": 37, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 38, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " resourceNames:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - cluster-info", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 42, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 44, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "kubeadm:kubelet-config", + "Results": [ + { + "Target": "Role/kubeadm:kubelet-config", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "extension-apiserver-authentication-reader", + "Results": [ + { + "Target": "Role/extension-apiserver-authentication-reader", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "kube-proxy", + "Results": [ + { + "Target": "Role/kube-proxy", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "kubeadm:nodes-kubeadm-config", + "Results": [ + { + "Target": "Role/kubeadm:nodes-kubeadm-config", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "system::leader-locking-kube-controller-manager", + "Results": [ + { + "Target": "Role/system::leader-locking-kube-controller-manager", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "Role 'system::leader-locking-kube-controller-manager' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 35, + "EndLine": 43, + "Code": { + "Lines": [ + { + "Number": 35, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 36, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " resourceNames:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 42, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "system::leader-locking-kube-scheduler", + "Results": [ + { + "Target": "Role/system::leader-locking-kube-scheduler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "Role 'system::leader-locking-kube-scheduler' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 35, + "EndLine": 43, + "Code": { + "Lines": [ + { + "Number": 35, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 36, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " resourceNames:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 42, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "system:controller:cloud-provider", + "Results": [ + { + "Target": "Role/system:controller:cloud-provider", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "Role 'system:controller:cloud-provider' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 29, + "EndLine": 37, + "Code": { + "Lines": [ + { + "Number": 29, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 30, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "system:controller:bootstrap-signer", + "Results": [ + { + "Target": "Role/system:controller:bootstrap-signer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 29, + "EndLine": 36, + "Code": { + "Lines": [ + { + "Number": 29, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 30, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "Role", + "Name": "leader-election-role", + "Results": [ + { + "Target": "Role/leader-election-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "Role 'leader-election-role' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 31, + "EndLine": 42, + "Code": { + "Lines": [ + { + "Number": 31, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 32, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 40, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "Role", + "Name": "system:controller:token-cleaner", + "Results": [ + { + "Target": "Role/system:controller:token-cleaner", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 29, + "EndLine": 37, + "Code": { + "Lines": [ + { + "Number": 29, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 30, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "RoleBinding", + "Name": "lurker", + "Results": [ + { + "Target": "RoleBinding/lurker", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "RoleBinding", + "Name": "parser", + "Results": [ + { + "Target": "RoleBinding/parser", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "integration-tests", + "Kind": "RoleBinding", + "Name": "trivy-k8s-lurker", + "Results": [ + { + "Target": "RoleBinding/trivy-k8s-lurker", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "RoleBinding", + "Name": "kubeadm:bootstrap-signer-clusterinfo", + "Results": [ + { + "Target": "RoleBinding/kubeadm:bootstrap-signer-clusterinfo", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-public", + "Kind": "RoleBinding", + "Name": "system:controller:bootstrap-signer", + "Results": [ + { + "Target": "RoleBinding/system:controller:bootstrap-signer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "kube-proxy", + "Results": [ + { + "Target": "RoleBinding/kube-proxy", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "kubeadm:kubelet-config", + "Results": [ + { + "Target": "RoleBinding/kubeadm:kubelet-config", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "kubeadm:nodes-kubeadm-config", + "Results": [ + { + "Target": "RoleBinding/kubeadm:nodes-kubeadm-config", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "system::extension-apiserver-authentication-reader", + "Results": [ + { + "Target": "RoleBinding/system::extension-apiserver-authentication-reader", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "system::leader-locking-kube-controller-manager", + "Results": [ + { + "Target": "RoleBinding/system::leader-locking-kube-controller-manager", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "system::leader-locking-kube-scheduler", + "Results": [ + { + "Target": "RoleBinding/system::leader-locking-kube-scheduler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "system:controller:bootstrap-signer", + "Results": [ + { + "Target": "RoleBinding/system:controller:bootstrap-signer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "system:controller:cloud-provider", + "Results": [ + { + "Target": "RoleBinding/system:controller:cloud-provider", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "securecodebox-system", + "Kind": "RoleBinding", + "Name": "leader-election-rolebinding", + "Results": [ + { + "Target": "RoleBinding/leader-election-rolebinding", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Namespace": "kube-system", + "Kind": "RoleBinding", + "Name": "system:controller:token-cleaner", + "Results": [ + { + "Target": "RoleBinding/system:controller:token-cleaner", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "cluster-admin", + "Results": [ + { + "Target": "ClusterRole/cluster-admin", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 139, + "Failures": 2, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV044", + "AVDID": "AVD-KSV-0044", + "Title": "No wildcard verb and resource roles", + "Description": "Check whether role permits wildcard verb on wildcard resource", + "Message": "Role permits wildcard verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV044", + "Query": "data.builtin.kubernetes.KSV044.deny", + "Resolution": "Create a role which does not permit wildcard verb on wildcard resource", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv044", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv044" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 33, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV046", + "AVDID": "AVD-KSV-0046", + "Title": "No wildcard resource roles", + "Description": "Check whether role permits specific verb on wildcard resources", + "Message": "Role permits specific verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV046", + "Query": "data.builtin.kubernetes.KSV046.deny", + "Resolution": "Create a role which does not permit specific verb on wildcard resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv046", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 33, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "admin", + "Results": [ + { + "Target": "ClusterRole/admin", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 136, + "Failures": 11, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 41, + "EndLine": 53, + "Code": { + "Lines": [ + { + "Number": 41, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 42, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 44, + "Content": " - pods/attach", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 45, + "Content": " - pods/exec", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 46, + "Content": " - pods/portforward", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 47, + "Content": " - pods/proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 48, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 49, + "Content": " - services/proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 50, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 80, + "EndLine": 97, + "Code": { + "Lines": [ + { + "Number": 80, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 81, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " - events", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 85, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 86, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 87, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 88, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 89, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 80, + "EndLine": 97, + "Code": { + "Lines": [ + { + "Number": 80, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 81, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " - events", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 85, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 86, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 87, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 88, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 89, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 104, + "EndLine": 120, + "Code": { + "Lines": [ + { + "Number": 104, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 105, + "Content": " - apps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 106, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 107, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 108, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 109, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 110, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 111, + "Content": " - replicasets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 112, + "Content": " - replicasets/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 113, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 131, + "EndLine": 141, + "Code": { + "Lines": [ + { + "Number": 131, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 132, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 133, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 134, + "Content": " - cronjobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " - jobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 137, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 138, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 140, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 142, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 142, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 143, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 151, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "ClusterRole 'admin' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 80, + "EndLine": 97, + "Code": { + "Lines": [ + { + "Number": 80, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 81, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " - events", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 85, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 86, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 87, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 88, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 89, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV050", + "AVDID": "AVD-KSV-0050", + "Title": "Do not allow management of RBAC resources", + "Description": "An effective level of access equivalent to cluster-admin should not be provided.", + "Message": "ClusterRole 'admin' should not have access to resources [\"roles\", \"rolebindings\"] for verbs [\"create\", \"update\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV050", + "Query": "data.builtin.kubernetes.KSV050.deny", + "Resolution": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv050", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 313, + "EndLine": 326, + "Code": { + "Lines": [ + { + "Number": 313, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 314, + "Content": " - rbac.authorization.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 315, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 316, + "Content": " - rolebindings", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 317, + "Content": " - roles", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 318, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 319, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 320, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 321, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 322, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'admin' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 80, + "EndLine": 97, + "Code": { + "Lines": [ + { + "Number": 80, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 81, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " - events", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 85, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 86, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 87, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 88, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 89, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'admin' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 142, + "EndLine": 159, + "Code": { + "Lines": [ + { + "Number": 142, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 143, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 144, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 145, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 151, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'admin' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 170, + "EndLine": 180, + "Code": { + "Lines": [ + { + "Number": 170, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 171, + "Content": " - networking.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 172, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 173, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 179, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "edit", + "Results": [ + { + "Target": "ClusterRole/edit", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 137, + "Failures": 10, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 43, + "EndLine": 55, + "Code": { + "Lines": [ + { + "Number": 43, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 44, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 45, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 46, + "Content": " - pods/attach", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 47, + "Content": " - pods/exec", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 48, + "Content": " - pods/portforward", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 49, + "Content": " - pods/proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 50, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 51, + "Content": " - services/proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 52, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 82, + "EndLine": 99, + "Code": { + "Lines": [ + { + "Number": 82, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 83, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 85, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 86, + "Content": " - events", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 87, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 88, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 89, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 90, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 91, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 82, + "EndLine": 99, + "Code": { + "Lines": [ + { + "Number": 82, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 83, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 85, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 86, + "Content": " - events", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 87, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 88, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 89, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 90, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 91, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 106, + "EndLine": 122, + "Code": { + "Lines": [ + { + "Number": 106, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 107, + "Content": " - apps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 108, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 109, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 110, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 111, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 112, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 113, + "Content": " - replicasets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 114, + "Content": " - replicasets/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 115, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 133, + "EndLine": 143, + "Code": { + "Lines": [ + { + "Number": 133, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 134, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " - cronjobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 137, + "Content": " - jobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 138, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 140, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 141, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 142, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 144, + "EndLine": 161, + "Code": { + "Lines": [ + { + "Number": 144, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 145, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 152, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 153, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "ClusterRole 'edit' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 82, + "EndLine": 99, + "Code": { + "Lines": [ + { + "Number": 82, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 83, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 85, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 86, + "Content": " - events", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 87, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 88, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 89, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 90, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 91, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'edit' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 82, + "EndLine": 99, + "Code": { + "Lines": [ + { + "Number": 82, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 83, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 85, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 86, + "Content": " - events", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 87, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 88, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 89, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 90, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 91, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'edit' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 144, + "EndLine": 161, + "Code": { + "Lines": [ + { + "Number": 144, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 145, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 146, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 147, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 148, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 149, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 150, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 151, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 152, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 153, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'edit' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 172, + "EndLine": 182, + "Code": { + "Lines": [ + { + "Number": 172, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 173, + "Content": " - networking.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 174, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 175, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 176, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 177, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 178, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 179, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 180, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 181, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "kubeadm:get-nodes", + "Results": [ + { + "Target": "ClusterRole/kubeadm:get-nodes", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "kindnet", + "Results": [ + { + "Target": "ClusterRole/kindnet", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "manager-role", + "Results": [ + { + "Target": "ClusterRole/manager-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 139, + "Failures": 3, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 30, + "EndLine": 41, + "Code": { + "Lines": [ + { + "Number": 30, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 31, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - jobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 39, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV050", + "AVDID": "AVD-KSV-0050", + "Title": "Do not allow management of RBAC resources", + "Description": "An effective level of access equivalent to cluster-admin should not be provided.", + "Message": "ClusterRole 'manager-role' should not have access to resources [\"roles\", \"rolebindings\"] for verbs [\"create\", \"update\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV050", + "Query": "data.builtin.kubernetes.KSV050.deny", + "Resolution": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv050", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 121, + "EndLine": 129, + "Code": { + "Lines": [ + { + "Number": 121, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 122, + "Content": " - rbac.authorization.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 123, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 124, + "Content": " - rolebindings", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 125, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 126, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 127, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 128, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 129, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV050", + "AVDID": "AVD-KSV-0050", + "Title": "Do not allow management of RBAC resources", + "Description": "An effective level of access equivalent to cluster-admin should not be provided.", + "Message": "ClusterRole 'manager-role' should not have access to resources [\"roles\", \"rolebindings\"] for verbs [\"create\", \"update\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV050", + "Query": "data.builtin.kubernetes.KSV050.deny", + "Resolution": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv050", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 130, + "EndLine": 139, + "Code": { + "Lines": [ + { + "Number": 130, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 131, + "Content": " - rbac.authorization.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 132, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 133, + "Content": " - roles", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 134, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 137, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 138, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "local-path-provisioner-role", + "Results": [ + { + "Target": "ClusterRole/local-path-provisioner-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 139, + "Failures": 2, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV045", + "AVDID": "AVD-KSV-0045", + "Title": "No wildcard verb roles", + "Description": "Check whether role permits wildcard verb on specific resources", + "Message": "Role permits wildcard verb on specific resources", + "Namespace": "builtin.kubernetes.KSV045", + "Query": "data.builtin.kubernetes.KSV045.deny", + "Resolution": "Create a role which does not permit wildcard verb on specific resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv045", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv045" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 34, + "EndLine": 41, + "Code": { + "Lines": [ + { + "Number": 34, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 35, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - persistentvolumes", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " - pods", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'local-path-provisioner-role' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 34, + "EndLine": 41, + "Code": { + "Lines": [ + { + "Number": 34, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 35, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - persistentvolumes", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " - pods", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "parsedefinition-viewer-role", + "Results": [ + { + "Target": "ClusterRole/parsedefinition-viewer-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "parsedefinition-editor-role", + "Results": [ + { + "Target": "ClusterRole/parsedefinition-editor-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "metrics-reader", + "Results": [ + { + "Target": "ClusterRole/metrics-reader", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "proxy-role", + "Results": [ + { + "Target": "ClusterRole/proxy-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "scan-viewer-role", + "Results": [ + { + "Target": "ClusterRole/scan-viewer-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "scantype-editor-role", + "Results": [ + { + "Target": "ClusterRole/scantype-editor-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "scan-editor-role", + "Results": [ + { + "Target": "ClusterRole/scan-editor-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "scantype-viewer-role", + "Results": [ + { + "Target": "ClusterRole/scantype-viewer-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "scheduledscan-editor-role", + "Results": [ + { + "Target": "ClusterRole/scheduledscan-editor-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:aggregate-to-admin", + "Results": [ + { + "Target": "ClusterRole/system:aggregate-to-admin", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV050", + "AVDID": "AVD-KSV-0050", + "Title": "Do not allow management of RBAC resources", + "Description": "An effective level of access equivalent to cluster-admin should not be provided.", + "Message": "ClusterRole 'system:aggregate-to-admin' should not have access to resources [\"roles\", \"rolebindings\"] for verbs [\"create\", \"update\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV050", + "Query": "data.builtin.kubernetes.KSV050.deny", + "Resolution": "Remove write permission verbs for resource 'roles' and 'rolebindings'", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv050", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv050" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 36, + "EndLine": 49, + "Code": { + "Lines": [ + { + "Number": 36, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 37, + "Content": " - rbac.authorization.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " - rolebindings", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - roles", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 42, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 44, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 45, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "scheduledscan-viewer-role", + "Results": [ + { + "Target": "ClusterRole/scheduledscan-viewer-role", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:aggregate-to-edit", + "Results": [ + { + "Target": "ClusterRole/system:aggregate-to-edit", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 137, + "Failures": 10, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 30, + "EndLine": 42, + "Code": { + "Lines": [ + { + "Number": 30, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 31, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - pods/attach", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - pods/exec", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - pods/portforward", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - pods/proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 38, + "Content": " - services/proxy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 39, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 69, + "EndLine": 86, + "Code": { + "Lines": [ + { + "Number": 69, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 70, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 71, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 72, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 73, + "Content": " - events", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 74, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 75, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 76, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 77, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 78, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 69, + "EndLine": 86, + "Code": { + "Lines": [ + { + "Number": 69, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 70, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 71, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 72, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 73, + "Content": " - events", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 74, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 75, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 76, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 77, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 78, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 93, + "EndLine": 109, + "Code": { + "Lines": [ + { + "Number": 93, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 94, + "Content": " - apps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 95, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 96, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 97, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 98, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 99, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 100, + "Content": " - replicasets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 101, + "Content": " - replicasets/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 102, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 120, + "EndLine": 130, + "Code": { + "Lines": [ + { + "Number": 120, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 121, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 122, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 123, + "Content": " - cronjobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 124, + "Content": " - jobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 125, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 126, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 127, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 128, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 129, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 131, + "EndLine": 148, + "Code": { + "Lines": [ + { + "Number": 131, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 132, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 133, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 134, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 137, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 138, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 140, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "ClusterRole 'system:aggregate-to-edit' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 69, + "EndLine": 86, + "Code": { + "Lines": [ + { + "Number": 69, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 70, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 71, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 72, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 73, + "Content": " - events", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 74, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 75, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 76, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 77, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 78, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:aggregate-to-edit' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 69, + "EndLine": 86, + "Code": { + "Lines": [ + { + "Number": 69, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 70, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 71, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 72, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 73, + "Content": " - events", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 74, + "Content": " - persistentvolumeclaims", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 75, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 76, + "Content": " - replicationcontrollers/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 77, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 78, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:aggregate-to-edit' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 131, + "EndLine": 148, + "Code": { + "Lines": [ + { + "Number": 131, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 132, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 133, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 134, + "Content": " - daemonsets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 135, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 136, + "Content": " - deployments/rollback", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 137, + "Content": " - deployments/scale", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 138, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 139, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 140, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:aggregate-to-edit' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 159, + "EndLine": 169, + "Code": { + "Lines": [ + { + "Number": 159, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 160, + "Content": " - networking.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 161, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 162, + "Content": " - ingresses", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 163, + "Content": " - networkpolicies", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 164, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 165, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 166, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 167, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 168, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:aggregate-to-view", + "Results": [ + { + "Target": "ClusterRole/system:aggregate-to-view", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:auth-delegator", + "Results": [ + { + "Target": "ClusterRole/system:auth-delegator", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:basic-user", + "Results": [ + { + "Target": "ClusterRole/system:basic-user", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:certificates.k8s.io:certificatesigningrequests:nodeclient", + "Results": [ + { + "Target": "ClusterRole/system:certificates.k8s.io:certificatesigningrequests:nodeclient", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:certificates.k8s.io:certificatesigningrequests:selfnodeclient", + "Results": [ + { + "Target": "ClusterRole/system:certificates.k8s.io:certificatesigningrequests:selfnodeclient", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:certificates.k8s.io:kube-apiserver-client-approver", + "Results": [ + { + "Target": "ClusterRole/system:certificates.k8s.io:kube-apiserver-client-approver", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:certificates.k8s.io:kube-apiserver-client-kubelet-approver", + "Results": [ + { + "Target": "ClusterRole/system:certificates.k8s.io:kube-apiserver-client-kubelet-approver", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:certificates.k8s.io:kubelet-serving-approver", + "Results": [ + { + "Target": "ClusterRole/system:certificates.k8s.io:kubelet-serving-approver", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:certificates.k8s.io:legacy-unknown-approver", + "Results": [ + { + "Target": "ClusterRole/system:certificates.k8s.io:legacy-unknown-approver", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:attachdetach-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:attachdetach-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:certificate-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:certificate-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:clusterrole-aggregation-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:clusterrole-aggregation-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:daemon-set-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:daemon-set-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:cronjob-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:cronjob-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 2, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 36, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - cronjobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 37, + "EndLine": 48, + "Code": { + "Lines": [ + { + "Number": 37, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 38, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - jobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 42, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 44, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 45, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 46, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:deployment-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:deployment-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 2, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 37, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - apps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " - deployments", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 52, + "EndLine": 64, + "Code": { + "Lines": [ + { + "Number": 52, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 53, + "Content": " - apps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 54, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 55, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 56, + "Content": " - replicasets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 57, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 58, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 59, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 60, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 61, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:endpoint-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:endpoint-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:controller:endpoint-controller' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 37, + "EndLine": 46, + "Code": { + "Lines": [ + { + "Number": 37, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 38, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 39, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 40, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 41, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 42, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 43, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 44, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 45, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 46, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:disruption-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:disruption-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:endpointslice-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:endpointslice-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:controller:endpointslice-controller' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 44, + "EndLine": 53, + "Code": { + "Lines": [ + { + "Number": 44, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 45, + "Content": " - discovery.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 46, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 47, + "Content": " - endpointslices", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 48, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 49, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 50, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 51, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 52, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 53, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:endpointslicemirroring-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:endpointslicemirroring-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:controller:endpointslicemirroring-controller' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 49, + "EndLine": 58, + "Code": { + "Lines": [ + { + "Number": 49, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 50, + "Content": " - discovery.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 51, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 52, + "Content": " - endpointslices", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 53, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 54, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 55, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 56, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 57, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 58, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:ephemeral-volume-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:ephemeral-volume-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:generic-garbage-collector", + "Results": [ + { + "Target": "ClusterRole/system:controller:generic-garbage-collector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV046", + "AVDID": "AVD-KSV-0046", + "Title": "No wildcard resource roles", + "Description": "Check whether role permits specific verb on wildcard resources", + "Message": "Role permits specific verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV046", + "Query": "data.builtin.kubernetes.KSV046.deny", + "Resolution": "Create a role which does not permit specific verb on wildcard resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv046", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 38, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - patch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 37, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:expand-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:expand-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 68, + "EndLine": 73, + "Code": { + "Lines": [ + { + "Number": 68, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 69, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 70, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 71, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 72, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 73, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:horizontal-pod-autoscaler", + "Results": [ + { + "Target": "ClusterRole/system:controller:horizontal-pod-autoscaler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 2, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV046", + "AVDID": "AVD-KSV-0046", + "Title": "No wildcard resource roles", + "Description": "Check whether role permits specific verb on wildcard resources", + "Message": "Role permits specific verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV046", + "Query": "data.builtin.kubernetes.KSV046.deny", + "Resolution": "Create a role which does not permit specific verb on wildcard resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv046", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 70, + "EndLine": 76, + "Code": { + "Lines": [ + { + "Number": 70, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 71, + "Content": " - custom.metrics.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 72, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 73, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 74, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 75, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 76, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV046", + "AVDID": "AVD-KSV-0046", + "Title": "No wildcard resource roles", + "Description": "Check whether role permits specific verb on wildcard resources", + "Message": "Role permits specific verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV046", + "Query": "data.builtin.kubernetes.KSV046.deny", + "Resolution": "Create a role which does not permit specific verb on wildcard resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv046", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 77, + "EndLine": 83, + "Code": { + "Lines": [ + { + "Number": 77, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 78, + "Content": " - external.metrics.k8s.io", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 79, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 80, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 81, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:job-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:job-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 37, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - batch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - jobs", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - patch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:namespace-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:namespace-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV046", + "AVDID": "AVD-KSV-0046", + "Title": "No wildcard resource roles", + "Description": "Check whether role permits specific verb on wildcard resources", + "Message": "Role permits specific verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV046", + "Query": "data.builtin.kubernetes.KSV046.deny", + "Resolution": "Create a role which does not permit specific verb on wildcard resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv046", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 44, + "EndLine": 52, + "Code": { + "Lines": [ + { + "Number": 44, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 45, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 46, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 47, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 48, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 49, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 50, + "Content": " - deletecollection", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 51, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 52, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:pod-garbage-collector", + "Results": [ + { + "Target": "ClusterRole/system:controller:pod-garbage-collector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:node-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:node-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:persistent-volume-binder", + "Results": [ + { + "Target": "ClusterRole/system:controller:persistent-volume-binder", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 139, + "Failures": 3, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 95, + "EndLine": 100, + "Code": { + "Lines": [ + { + "Number": 95, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 96, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 97, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 98, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 99, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 100, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:controller:persistent-volume-binder' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 78, + "EndLine": 86, + "Code": { + "Lines": [ + { + "Number": 78, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 79, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 80, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 81, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 85, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 86, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:controller:persistent-volume-binder' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 87, + "EndLine": 94, + "Code": { + "Lines": [ + { + "Number": 87, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 88, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 89, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 90, + "Content": " - services", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 91, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 92, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 93, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 94, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:pv-protection-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:pv-protection-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:pvc-protection-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:pvc-protection-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:replicaset-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:replicaset-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 37, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - apps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " - extensions", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " - replicasets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 37, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:resourcequota-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:resourcequota-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV046", + "AVDID": "AVD-KSV-0046", + "Title": "No wildcard resource roles", + "Description": "Check whether role permits specific verb on wildcard resources", + "Message": "Role permits specific verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV046", + "Query": "data.builtin.kubernetes.KSV046.deny", + "Resolution": "Create a role which does not permit specific verb on wildcard resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv046", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 34, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:replication-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:replication-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV048", + "AVDID": "AVD-KSV-0048", + "Title": "Do not allow update/create of a malicious pod", + "Description": "Check whether role permits update/create of a malicious pod", + "Message": "Role permits create/update of a malicious pod", + "Namespace": "builtin.kubernetes.KSV048", + "Query": "data.builtin.kubernetes.KSV048.deny", + "Resolution": "Create a role which does not permit update/create of a malicious pod", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv048", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv048" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 36, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - replicationcontrollers", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 35, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 36, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:root-ca-cert-publisher", + "Results": [ + { + "Target": "ClusterRole/system:controller:root-ca-cert-publisher", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV049", + "AVDID": "AVD-KSV-0049", + "Title": "Do not allow management of configmaps", + "Description": "Some workloads leverage configmaps to store sensitive data or configuration parameters that affect runtime behavior that can be modified by an attacker or combined with another issue to potentially lead to compromise.", + "Message": "ClusterRole 'system:controller:root-ca-cert-publisher' should not have access to resource 'configmaps' for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV049", + "Query": "data.builtin.kubernetes.KSV049.deny", + "Resolution": "Remove write permission verbs for resource 'configmaps'", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv049", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv049" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 28, + "EndLine": 34, + "Code": { + "Lines": [ + { + "Number": 28, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 29, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 30, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 31, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 32, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 33, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 34, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:service-account-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:service-account-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:route-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:route-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:service-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:service-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:ttl-after-finished-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:ttl-after-finished-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:statefulset-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:statefulset-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:controller:ttl-controller", + "Results": [ + { + "Target": "ClusterRole/system:controller:ttl-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:coredns", + "Results": [ + { + "Target": "ClusterRole/system:coredns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:discovery", + "Results": [ + { + "Target": "ClusterRole/system:discovery", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:heapster", + "Results": [ + { + "Target": "ClusterRole/system:heapster", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:kube-aggregator", + "Results": [ + { + "Target": "ClusterRole/system:kube-aggregator", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:kube-controller-manager", + "Results": [ + { + "Target": "ClusterRole/system:kube-controller-manager", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 138, + "Failures": 7, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 67, + "EndLine": 73, + "Code": { + "Lines": [ + { + "Number": 67, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 68, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 69, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 70, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 71, + "Content": " - serviceaccounts", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 72, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 73, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 74, + "EndLine": 79, + "Code": { + "Lines": [ + { + "Number": 74, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 75, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 76, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 77, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 78, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 79, + "Content": " - delete", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 80, + "EndLine": 88, + "Code": { + "Lines": [ + { + "Number": 80, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 81, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 82, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 83, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 84, + "Content": " - namespaces", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 85, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 86, + "Content": " - serviceaccounts", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 87, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 88, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 89, + "EndLine": 95, + "Code": { + "Lines": [ + { + "Number": 89, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 90, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 91, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 92, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 93, + "Content": " - serviceaccounts", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 94, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 95, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV046", + "AVDID": "AVD-KSV-0046", + "Title": "No wildcard resource roles", + "Description": "Check whether role permits specific verb on wildcard resources", + "Message": "Role permits specific verb on wildcard resource", + "Namespace": "builtin.kubernetes.KSV046", + "Query": "data.builtin.kubernetes.KSV046.deny", + "Resolution": "Create a role which does not permit specific verb on wildcard resources", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv046", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv046" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 108, + "EndLine": 114, + "Code": { + "Lines": [ + { + "Number": 108, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 109, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 110, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 111, + "Content": " - '*'", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 112, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 113, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 114, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:kube-controller-manager' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 52, + "EndLine": 57, + "Code": { + "Lines": [ + { + "Number": 52, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 53, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 54, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 55, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 56, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 57, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:kube-controller-manager' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 58, + "EndLine": 66, + "Code": { + "Lines": [ + { + "Number": 58, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 59, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 60, + "Content": " resourceNames:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 61, + "Content": " - kube-controller-manager", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 62, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 63, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 64, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 65, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 66, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:kube-scheduler", + "Results": [ + { + "Target": "ClusterRole/system:kube-scheduler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 2, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:kube-scheduler' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 52, + "EndLine": 57, + "Code": { + "Lines": [ + { + "Number": 52, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 53, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 54, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 55, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 56, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 57, + "Content": " - create", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KSV056", + "AVDID": "AVD-KSV-0056", + "Title": "Do not allow management of networking resources", + "Description": "The ability to control which pods get service traffic directed to them allows for interception attacks. Controlling network policy allows for bypassing lateral movement restrictions.", + "Message": "ClusterRole 'system:kube-scheduler' should not have access to resources [\"services\", \"endpoints\", \"endpointslices\", \"networkpolicies\", \"ingresses\"] for verbs [\"create\", \"update\", \"patch\", \"delete\", \"deletecollection\", \"impersonate\", \"*\"]", + "Namespace": "builtin.kubernetes.KSV056", + "Query": "data.builtin.kubernetes.KSV056.deny", + "Resolution": "Networking resources are only allowed for verbs 'list', 'watch', 'get'", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv056", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 58, + "EndLine": 66, + "Code": { + "Lines": [ + { + "Number": 58, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 59, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 60, + "Content": " resourceNames:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 61, + "Content": " - kube-scheduler", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 62, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 63, + "Content": " - endpoints", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 64, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 65, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 66, + "Content": " - update", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:kube-dns", + "Results": [ + { + "Target": "ClusterRole/system:kube-dns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:kubelet-api-admin", + "Results": [ + { + "Target": "ClusterRole/system:kubelet-api-admin", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:monitoring", + "Results": [ + { + "Target": "ClusterRole/system:monitoring", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:node-bootstrapper", + "Results": [ + { + "Target": "ClusterRole/system:node-bootstrapper", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:node-proxier", + "Results": [ + { + "Target": "ClusterRole/system:node-proxier", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:node-problem-detector", + "Results": [ + { + "Target": "ClusterRole/system:node-problem-detector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:node", + "Results": [ + { + "Target": "ClusterRole/system:node", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV041", + "AVDID": "AVD-KSV-0041", + "Title": "Do not allow management of secrets", + "Description": "Check whether role permits managing secrets", + "Message": "Role permits management of secret(s)", + "Namespace": "builtin.kubernetes.KSV041", + "Query": "data.builtin.kubernetes.KSV041.deny", + "Resolution": "Create a role which does not permit to manage secrets if not needed", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv041", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv041" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 108, + "EndLine": 116, + "Code": { + "Lines": [ + { + "Number": 108, + "Content": " - apiGroups:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 109, + "Content": " - \"\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 110, + "Content": " resources:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 111, + "Content": " - configmaps", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 112, + "Content": " - secrets", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 113, + "Content": " verbs:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 114, + "Content": " - get", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 115, + "Content": " - list", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 116, + "Content": " - watch", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:persistent-volume-provisioner", + "Results": [ + { + "Target": "ClusterRole/system:persistent-volume-provisioner", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:public-info-viewer", + "Results": [ + { + "Target": "ClusterRole/system:public-info-viewer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:service-account-issuer-discovery", + "Results": [ + { + "Target": "ClusterRole/system:service-account-issuer-discovery", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "system:volume-scheduler", + "Results": [ + { + "Target": "ClusterRole/system:volume-scheduler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "trivy-k8s", + "Results": [ + { + "Target": "ClusterRole/trivy-k8s", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRole", + "Name": "view", + "Results": [ + { + "Target": "ClusterRole/view", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "cluster-admin", + "Results": [ + { + "Target": "ClusterRoleBinding/cluster-admin", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "kindnet", + "Results": [ + { + "Target": "ClusterRoleBinding/kindnet", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "kubeadm:kubelet-bootstrap", + "Results": [ + { + "Target": "ClusterRoleBinding/kubeadm:kubelet-bootstrap", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "kubeadm:get-nodes", + "Results": [ + { + "Target": "ClusterRoleBinding/kubeadm:get-nodes", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "kubeadm:node-autoapprove-bootstrap", + "Results": [ + { + "Target": "ClusterRoleBinding/kubeadm:node-autoapprove-bootstrap", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "kubeadm:node-autoapprove-certificate-rotation", + "Results": [ + { + "Target": "ClusterRoleBinding/kubeadm:node-autoapprove-certificate-rotation", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "kubeadm:node-proxier", + "Results": [ + { + "Target": "ClusterRoleBinding/kubeadm:node-proxier", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "local-path-provisioner-bind", + "Results": [ + { + "Target": "ClusterRoleBinding/local-path-provisioner-bind", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "manager-rolebinding", + "Results": [ + { + "Target": "ClusterRoleBinding/manager-rolebinding", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "proxy-rolebinding", + "Results": [ + { + "Target": "ClusterRoleBinding/proxy-rolebinding", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:basic-user", + "Results": [ + { + "Target": "ClusterRoleBinding/system:basic-user", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:attachdetach-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:attachdetach-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:certificate-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:certificate-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:clusterrole-aggregation-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:clusterrole-aggregation-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:cronjob-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:cronjob-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:daemon-set-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:daemon-set-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:deployment-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:deployment-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:disruption-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:disruption-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:endpoint-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:endpoint-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:endpointslice-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:endpointslice-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:endpointslicemirroring-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:endpointslicemirroring-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:expand-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:expand-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:ephemeral-volume-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:ephemeral-volume-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:generic-garbage-collector", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:generic-garbage-collector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:namespace-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:namespace-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:horizontal-pod-autoscaler", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:horizontal-pod-autoscaler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:job-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:job-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:node-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:node-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:persistent-volume-binder", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:persistent-volume-binder", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:pod-garbage-collector", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:pod-garbage-collector", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:replicaset-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:replicaset-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:pvc-protection-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:pvc-protection-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:pv-protection-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:pv-protection-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:replication-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:replication-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:resourcequota-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:resourcequota-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:route-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:route-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:service-account-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:service-account-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:root-ca-cert-publisher", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:root-ca-cert-publisher", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:service-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:service-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:statefulset-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:statefulset-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:coredns", + "Results": [ + { + "Target": "ClusterRoleBinding/system:coredns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:ttl-after-finished-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:ttl-after-finished-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:controller:ttl-controller", + "Results": [ + { + "Target": "ClusterRoleBinding/system:controller:ttl-controller", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:discovery", + "Results": [ + { + "Target": "ClusterRoleBinding/system:discovery", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:kube-controller-manager", + "Results": [ + { + "Target": "ClusterRoleBinding/system:kube-controller-manager", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:kube-dns", + "Results": [ + { + "Target": "ClusterRoleBinding/system:kube-dns", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:monitoring", + "Results": [ + { + "Target": "ClusterRoleBinding/system:monitoring", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:kube-scheduler", + "Results": [ + { + "Target": "ClusterRoleBinding/system:kube-scheduler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:node", + "Results": [ + { + "Target": "ClusterRoleBinding/system:node", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:node-proxier", + "Results": [ + { + "Target": "ClusterRoleBinding/system:node-proxier", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:public-info-viewer", + "Results": [ + { + "Target": "ClusterRoleBinding/system:public-info-viewer", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:volume-scheduler", + "Results": [ + { + "Target": "ClusterRoleBinding/system:volume-scheduler", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "system:service-account-issuer-discovery", + "Results": [ + { + "Target": "ClusterRoleBinding/system:service-account-issuer-discovery", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "ClusterRoleBinding", + "Name": "trivy-k8s", + "Results": [ + { + "Target": "ClusterRoleBinding/trivy-k8s", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 140, + "Failures": 1, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KSV111", + "AVDID": "AVD-KSV-0111", + "Title": "Ensure that the cluster-admin role is only used where required", + "Description": "The RBAC role cluster-admin provides wide-ranging powers over the environment and should be used only where and when needed.", + "Message": "ClusterRoleBinding 'trivy-k8s' with role 'cluster-admin' should be used only when required", + "Namespace": "builtin.kubernetes.KSV111", + "Query": "data.builtin.kubernetes.KSV111.deny", + "Resolution": "Identify all clusterrolebindings to the cluster-admin role. Check if they are used and if they need this role or if they could use a role with fewer privileges.", + "Severity": "MEDIUM", + "PrimaryURL": "https://avd.aquasec.com/misconfig/ksv111", + "References": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/", + "https://avd.aquasec.com/misconfig/ksv111" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "StartLine": 4, + "EndLine": 29, + "Code": { + "Lines": [ + { + "Number": 4, + "Content": " annotations:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": true, + "LastCause": false + }, + { + "Number": 5, + "Content": " meta.helm.sh/release-name: trivy", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 6, + "Content": " meta.helm.sh/release-namespace: integration-tests", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 7, + "Content": " creationTimestamp: \"2023-06-13T12:39:45Z\"", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 8, + "Content": " labels:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 9, + "Content": " app.kubernetes.io/managed-by: Helm", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 10, + "Content": " managedFields:", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 11, + "Content": " - apiVersion: rbac.authorization.k8s.io/v1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": false + }, + { + "Number": 12, + "Content": " fieldsType: FieldsV1", + "IsCause": true, + "Annotation": "", + "Truncated": false, + "FirstCause": false, + "LastCause": true + }, + { + "Number": 13, + "Content": "", + "IsCause": false, + "Annotation": "", + "Truncated": true, + "FirstCause": false, + "LastCause": false + } + ] + } + } + } + ] + } + ] + }, + { + "Kind": "Node", + "Name": "kind-control-plane", + "Results": [ + { + "Target": "Node/kind-control-plane", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 141, + "Failures": 0, + "Exceptions": 0 + } + } + ] + }, + { + "Kind": "NodeInfo", + "Name": "kind-control-plane", + "Results": [ + { + "Target": "NodeInfo/kind-control-plane", + "Class": "config", + "Type": "kubernetes", + "MisconfSummary": { + "Successes": 135, + "Failures": 6, + "Exceptions": 0 + }, + "Misconfigurations": [ + { + "Type": "Kubernetes Security Check", + "ID": "KCV0056", + "AVDID": "AVD-KCV-0056", + "Title": "Ensure that the container network interface file permissions are set to 600 or more restrictive", + "Description": "Ensure that the container network interface file has permissions of 600 or more restrictive.", + "Message": "Ensure that the Container Network Interface specification file permissions is set to 600 or more restrictive", + "Namespace": "builtin.kubernetes.KCV0056", + "Query": "data.builtin.kubernetes.KCV0056.deny", + "Resolution": "Change the container network interface file path/to/cni/files permissions of 600 or more restrictive ", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0056", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0056" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0059", + "AVDID": "AVD-KCV-0059", + "Title": "Ensure that the etcd data directory ownership is set to etcd:etcd", + "Description": "Ensure that the etcd data directory ownership is set to etcd:etcd.", + "Message": "Ensure that the etcd data directory ownership is set to etcd:etcd", + "Namespace": "builtin.kubernetes.KCV0059", + "Query": "data.builtin.kubernetes.KCV0059.deny", + "Resolution": "Change the etcd data directory /var/lib/etcd ownership to etcd:etcd", + "Severity": "LOW", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0059", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0059" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0068", + "AVDID": "AVD-KCV-0068", + "Title": "Ensure that the Kubernetes PKI certificate file permission is set to 600", + "Description": "Ensure that the Kubernetes PKI certificate file permission is set to 600.", + "Message": "Ensure that the Kubernetes PKI certificate file permission is set to 600", + "Namespace": "builtin.kubernetes.KCV0068", + "Query": "data.builtin.kubernetes.KCV0068.deny", + "Resolution": "Change the Kubernetes PKI certificate file /etc/kubernetes/pki/*.crt permission to 600", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0068", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0068" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0069", + "AVDID": "AVD-KCV-0069", + "Title": "Ensure that the kubelet service file permissions are set to 600 or more restrictive", + "Description": "Ensure that the kubelet service file has permissions of 600 or more restrictive.", + "Message": "Ensure that the kubelet service file permissions are set to 600 or more restrictive", + "Namespace": "builtin.kubernetes.KCV0069", + "Query": "data.builtin.kubernetes.KCV0069.deny", + "Resolution": "Change the kubelet service file /etc/systemd/system/kubelet.service.d/10-kubeadm.conf permissions of 600 or more restrictive ", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0069", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0069" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0075", + "AVDID": "AVD-KCV-0075", + "Title": "Ensure that the certificate authorities file permissions are set to 600 or more restrictive", + "Description": "Ensure that the certificate authorities file has permissions of 600 or more restrictive.", + "Message": "Ensure that the certificate authorities file permissions are set to 600 or more restrictive", + "Namespace": "builtin.kubernetes.KCV0075", + "Query": "data.builtin.kubernetes.KCV0075.deny", + "Resolution": "Change the certificate authorities file permissions to 600 or more restrictive if exist", + "Severity": "CRITICAL", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0075", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0075" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + }, + { + "Type": "Kubernetes Security Check", + "ID": "KCV0077", + "AVDID": "AVD-KCV-0077", + "Title": "If the kubelet config.yaml configuration file is being used validate permissions set to 600 or more restrictive", + "Description": "Ensure that if the kubelet refers to a configuration file with the --config argument, that file has permissions of 600 or more restrictive.", + "Message": "Ensure that if the kubelet refers to a configuration file with the --config argument, that file has permissions of 600 or more restrictive.", + "Namespace": "builtin.kubernetes.KCV0077", + "Query": "data.builtin.kubernetes.KCV0077.deny", + "Resolution": "Change the kubelet config yaml permissions to 600 or more restrictive if exist", + "Severity": "HIGH", + "PrimaryURL": "https://avd.aquasec.com/misconfig/kcv0077", + "References": [ + "https://www.cisecurity.org/benchmark/kubernetes", + "https://avd.aquasec.com/misconfig/kcv0077" + ], + "Status": "FAIL", + "Layer": {}, + "CauseMetadata": { + "Provider": "Kubernetes", + "Service": "general", + "Code": { + "Lines": null + } + } + } + ] + } + ] + } + ] +} diff --git a/scanners/trivy/parser/__testFiles__/trivy--k8s-scan-results.json.license b/scanners/trivy/parser/__testFiles__/trivy--k8s-scan-results.json.license new file mode 100644 index 0000000000..c95bc37185 --- /dev/null +++ b/scanners/trivy/parser/__testFiles__/trivy--k8s-scan-results.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: the secureCodeBox authors + +SPDX-License-Identifier: Apache-2.0 diff --git a/scanners/trivy/parser/parser.js b/scanners/trivy/parser/parser.js index 78ed941ffc..e8e4c6b507 100644 --- a/scanners/trivy/parser/parser.js +++ b/scanners/trivy/parser/parser.js @@ -2,22 +2,39 @@ // // SPDX-License-Identifier: Apache-2.0 -async function parse(scanResults) { +async function parse(fileContent) { // The first scan always contains the image id a similar format to: "bkimminich/juice-shop:v10.2.0 (alpine 3.11.5)" - const imageScanResult = scanResults; - if (typeof(imageScanResult) === "string") // empty file - return []; + let scanResults = fileContent; + if (typeof fileContent === "string") { + if (fileContent.includes("{") && fileContent.includes("}")) { + scanResults = JSON.parse(fileContent) + } else { + // empty file + return []; + } + } + + if (Object.prototype.hasOwnProperty.call(scanResults, 'ClusterName')) { + // Results of k8s-scans always contain an attribute 'ClusterName' at first position of the JSON document. + // These scan-results need a different parsing + const clusterName = scanResults.ClusterName; + return await parseK8sScanResults(clusterName, scanResults); + } else { + return parseImageScanResults(scanResults); + } +} - // check if scanResults.Results is an array and non empty - if (!Array.isArray(scanResults.Results) || scanResults.Results.length === 0) { +function parseImageScanResults(imageScanResults) { + // check if imageScanResults.Results is an array and non empty + if (!Array.isArray(imageScanResults.Results) || imageScanResults.Results.length === 0) { return []; } - const imageId = imageScanResult.ArtifactName; + const imageId = imageScanResults.ArtifactName; - // Use flatMap to iterate through scanResults.Results and flatten the resulting findings array -const findings = scanResults.Results.flatMap(({ Target: target, Vulnerabilities }) => { + // Use flatMap to iterate through imageScanResults.Results and flatten the resulting findings array +const findings = imageScanResults.Results.flatMap(({ Target: target, Vulnerabilities }) => { const vulnerabilities = Vulnerabilities || []; const category = getCategory(target); @@ -34,8 +51,7 @@ const findings = scanResults.Results.flatMap(({ Target: target, Vulnerabilities { type: "URL", value: `https://github.com/nodejs/security-wg/tree/master/vuln` } ] : []; - // Create URL references from the vulnerability references - const url_references = References ? References.filter(ref => ref.startsWith("http")).map(ref => ({ type: "URL", value: ref })) : []; + const url_references = getUrlReferences(References); // Combine CVE/NSWG and URL references const references = [...cve_nswg_references, ...url_references]; @@ -64,7 +80,139 @@ const findings = scanResults.Results.flatMap(({ Target: target, Vulnerabilities return findings; - + +} + +function parseK8sScanResults(clusterName, scanResults) { + /** + Expected structure of trivy-k8s-scanResult: + + ClusterName: string + Resources: array + Namespace: string + Kind: string + Name: string + Results: array + Target: string + Class: string + Type: string + MisconfSummary: object (ignored) + Vulnerabilities or Misconfigurations: array + ID + + */ + return new Promise((resolve, reject) => { + + var keys = Object.keys(scanResults); + const expectedTopLevelAttributes = ["ClusterName", "Resources"]; + const found = keys.find(key => !expectedTopLevelAttributes.includes(key)); + if (found !== undefined) { + reject(new Error("Unexpected attribute '" + found + "' on top-level of scan-result document")); + } + + if (!scanResults.Resources || scanResults.Resources.length === 0) { + reject(new Error("No resources listet in scan-result document")); + } + + const findings = scanResults.Resources.flatMap((resourceItem) => parseK8sScanResultResource(clusterName, resourceItem, reject)); + + resolve(findings); + }); +} + +function parseK8sScanResultResource(clusterName, resourceItem, reject) { + let findings = []; + + const {Namespace: namespace, Kind: kind, Name: name, Results} = resourceItem; + const results = Results || []; + + for (const aResult of results) { + const {Target: target, Class: clazz, Type: type} = aResult; + + var keys = Object.keys(aResult); + const expectedAttributes = ["Target", "Class", "Type", "Misconfigurations", "Vulnerabilities", "MisconfSummary"]; + const found = keys.find(key => !expectedAttributes.includes(key)); + if (found !== undefined) { + reject(new Error("Unexpected attribute '" + found + "' on resource-item")); + } + + let categoryName = 'Vulnerabilities'; + const vulnerabilities = aResult[categoryName] || []; + findings = findings.concat( + vulnerabilities.map(vulnerability => + convertTrivyK8sFindingToSCBFinding(vulnerability, clusterName, namespace, kind, name, target, clazz, type, categoryName) + ) + ); + + categoryName = 'Misconfigurations'; + const misconfigurations = aResult[categoryName] || []; + findings = findings.concat( + misconfigurations.map(misconfiguration => + convertTrivyK8sFindingToSCBFinding(misconfiguration, clusterName, namespace, kind, name, target, clazz, type, categoryName) + ) + ); + } + + return findings; +} + +function convertTrivyK8sFindingToSCBFinding(trivyK8sFinding, clusterName, namespace, kind, k8sName, target, clazz, type, categoryName) { + let references = trivyK8sFinding.PrimaryURL ? [{type: "URL", value: trivyK8sFinding.PrimaryURL}] : []; + + const url_references = getUrlReferences(trivyK8sFinding.References).filter(ref => ref.value !== trivyK8sFinding.PrimaryURL); + references = references.concat(url_references); + + const category = categoryName === 'Vulnerabilities' ? 'Vulnerability' : 'Misconfiguration'; + + let name = `Finding in Dependency ${trivyK8sFinding.PkgName} (${trivyK8sFinding.InstalledVersion})` + if (trivyK8sFinding.Title) { + name = trivyK8sFinding.Title; + if (trivyK8sFinding.Message) { + name += `(${trivyK8sFinding.Message})`; + } + } + + let location = `Kind: '${kind}' / Name: '${k8sName}'`; + if (namespace) { + location = `Namespace: '${namespace}' / ${location}`; + } + if (clusterName) { + location = `Cluster: '${clusterName}' / ${location}`; + } + + let foundIn = `Target: '${target}'` + if (clazz) { + foundIn = `${foundIn} / Class: '${clazz}'`; + } + if (type) { + foundIn = `${foundIn} / Type: '${type}'`; + } + + const finding = { + name, + description: trivyK8sFinding.Description || trivyK8sFinding.Message, + category, + location, + severity: getAdjustedSeverity(trivyK8sFinding.Severity), + mitigation: trivyK8sFinding.Resolution ? trivyK8sFinding.Resolution : undefined, + references, + attributes: { + installedVersion: trivyK8sFinding.InstalledVersion, + fixedVersion: trivyK8sFinding.FixedVersion, + packageName: trivyK8sFinding.PkgName, + id: trivyK8sFinding.VulnerabilityID ? trivyK8sFinding.VulnerabilityID : trivyK8sFinding.ID, + references: trivyK8sFinding.References, + foundIn, + }, + }; + return finding; +} + +/** + * Create URL references from the vulnerability references + */ +function getUrlReferences(References) { + return References ? References.filter(ref => ref.startsWith("http")).map(ref => ({type: "URL", value: ref})) : []; } function getCategory(target) { diff --git a/scanners/trivy/parser/parser.test.js b/scanners/trivy/parser/parser.test.js index 0b85fc569d..adfb31c227 100644 --- a/scanners/trivy/parser/parser.test.js +++ b/scanners/trivy/parser/parser.test.js @@ -11,7 +11,7 @@ const { // eslint-disable-next-line security/detect-non-literal-fs-filename const readFile = util.promisify(fs.readFile); -const { parse } = require("./parser"); +const {parse} = require("./parser"); test("parses bkimminich/juice-shop:v10.2.0 result file into findings", async () => { const fileContent = JSON.parse( @@ -56,6 +56,40 @@ test("should properly parse a json file with no .Results", async () => { const findings = await parse(fileContent); await expect(validateParser(findings)).resolves.toBeUndefined(); expect(findings).toMatchInlineSnapshot(`[]`); + +}); + +test("should parse a trivy-k8s scan result of a cluster running secureCodeBox itself", async () => { + const jsonContent = JSON.parse( + await readFile(__dirname + "/__testFiles__/local-k8s-scan-result.json", { + encoding: "utf8", + }) + ); + const findings = await parse(jsonContent); + await expect(validateParser(findings)).resolves.toBeUndefined(); + expect(findings).toMatchSnapshot(); +}); + +test("should report an error in case of unexpected attributes in a trivy-k8s scan result", async () => { + const jsonContent = JSON.parse( + await readFile(__dirname + "/__testFiles__/k8s-results_unexpected-attribute.json", { + encoding: "utf8", + }) + ); + await expect(parse(jsonContent)).rejects.toThrow( + "Unexpected attribute 'Secrets' on resource-item" + ); +}); + +test("should parse a trivy-k8s scan result", async () => { + const jsonContent = JSON.parse( + await readFile(__dirname + "/__testFiles__/trivy--k8s-scan-results.json", { + encoding: "utf8", + }) + ); + const findings = await parse(jsonContent); + await expect(validateParser(findings)).resolves.toBeUndefined(); + expect(findings).toMatchSnapshot(); }); diff --git a/scanners/trivy/templates/trivy-rbac.yaml b/scanners/trivy/templates/trivy-rbac.yaml index ec8f0de80d..87e663aa06 100644 --- a/scanners/trivy/templates/trivy-rbac.yaml +++ b/scanners/trivy/templates/trivy-rbac.yaml @@ -48,3 +48,109 @@ roleRef: kind: Role name: trivy-autodiscovery {{ end }} + +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: trivy-k8s + namespace: {{ .Release.Namespace}} +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: trivy-k8s-lurker + namespace: {{ .Release.Namespace}} +subjects: + - kind: ServiceAccount + name: trivy-k8s + namespace: {{ .Release.Namespace}} +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: lurker +--- + {{- if eq .Values.kubeauditScope "namespace" }} +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: trivy-k8s + namespace: {{ .Release.Namespace}} +rules: + - apiGroups: [""] + resources: + - pods + - podtemplates + - replicationcontrollers + - namespaces + verbs: ["get", "list"] + - apiGroups: ["apps"] + resources: + - daemonsets + - statefulsets + - deployments + verbs: ["get", "list"] + - apiGroups: ["batch"] + resources: + - cronjobs + verbs: ["get", "list"] + - apiGroups: ["networking"] + resources: + - networkpolicies + verbs: ["get", "list"] +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: trivy-k8s + namespace: {{ .Release.Namespace}} +subjects: + - kind: ServiceAccount + name: trivy-k8s + namespace: {{ .Release.Namespace}} +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: trivy-k8s + {{- end }} + {{- if eq .Values.kubeauditScope "cluster" }} +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: trivy-k8s +rules: + - apiGroups: [""] + resources: + - pods + - podtemplates + - replicationcontrollers + - namespaces + verbs: ["get", "list"] + - apiGroups: ["apps"] + resources: + - daemonsets + - statefulsets + - deployments + verbs: ["get", "list"] + - apiGroups: ["batch"] + resources: + - cronjobs + verbs: ["get", "list"] + - apiGroups: ["networking"] + resources: + - networkpolicies + verbs: ["get", "list"] +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: trivy-k8s +subjects: + - kind: ServiceAccount + name: trivy-k8s + namespace: {{ .Release.Namespace}} +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cluster-admin + {{- end }} diff --git a/scanners/trivy/templates/trivy-scan-type.yaml b/scanners/trivy/templates/trivy-scan-type.yaml index 0206d60712..26ca7cb052 100644 --- a/scanners/trivy/templates/trivy-scan-type.yaml +++ b/scanners/trivy/templates/trivy-scan-type.yaml @@ -243,3 +243,58 @@ spec: {{- end }} volumes: {{- toYaml .Values.scanner.extraVolumes | nindent 12 }} +--- +apiVersion: "execution.securecodebox.io/v1" +kind: ScanType +metadata: + name: "trivy-k8s{{ .Values.scanner.nameAppend | default ""}}" +spec: + extractResults: + type: trivy-json + location: "/home/securecodebox/trivy-results.json" + jobTemplate: + spec: + {{- if .Values.scanner.ttlSecondsAfterFinished }} + ttlSecondsAfterFinished: {{ .Values.scanner.ttlSecondsAfterFinished }} + {{- end }} + backoffLimit: {{ .Values.scanner.backoffLimit }} + {{- if .Values.scanner.activeDeadlineSeconds }} + activeDeadlineSeconds: {{ .Values.scanner.activeDeadlineSeconds }} + {{- end }} + template: + spec: + restartPolicy: OnFailure + affinity: + {{- toYaml .Values.scanner.affinity | nindent 12 }} + tolerations: + {{- toYaml .Values.scanner.tolerations | nindent 12 }} + containers: + - name: trivy + image: "{{ .Values.scanner.image.repository }}:{{ .Values.scanner.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.scanner.image.pullPolicy }} + command: + - "trivy" + - "k8s" + # Suppress progress bar, as it pollutes non interactive terminal logs + - "--no-progress" + - "--format" + - "json" + - "--report" + - "all" + - "--output" + - "/home/securecodebox/trivy-results.json" + resources: + {{- toYaml .Values.scanner.resources | nindent 16 }} + securityContext: + {{- toYaml .Values.scanner.securityContext | nindent 16 }} + env: + {{- toYaml .Values.scanner.env | nindent 16 }} + volumeMounts: + {{- toYaml .Values.scanner.extraVolumeMounts | nindent 16 }} + {{- if .Values.scanner.extraContainers }} + {{- toYaml .Values.scanner.extraContainers | nindent 12 }} + {{- end }} + serviceAccountName: trivy-k8s + volumes: + {{- toYaml .Values.scanner.extraVolumes | nindent 12 }} + diff --git a/scanners/trivy/values.yaml b/scanners/trivy/values.yaml index 2ca111eebf..401f0aa18a 100644 --- a/scanners/trivy/values.yaml +++ b/scanners/trivy/values.yaml @@ -102,6 +102,9 @@ scanner: # -- if set to true the scan job will be suspended after creation. You can then resume the job using `kubectl resume ` or using a job scheduler like kueue suspend: false + +# kubeauditScope -- Automatically sets up rbac roles for kubeaudit to access the resources it scans. Can be either "cluster" (ClusterRole) or "namespace" (Role) +kubeauditScope: "cluster" trivyDatabaseCache: # -- Enables or disables the use of trivy server in another pod to cache the vulnerability database for all scans. @@ -114,5 +117,6 @@ cascadingRules: enabled: false + # -- Creates a `trivy-image-autodiscovery` scanType with its own ServiceAccount for the SCB AutoDiscovery, enabled to scan images from both public & private registries. -createAutoDiscoveryScanType: false \ No newline at end of file +createAutoDiscoveryScanType: false